Skip to content

Instantly share code, notes, and snippets.

@nerdfiles
Last active August 29, 2015 14:19
Show Gist options
  • Save nerdfiles/53f4e17fb64dc49e1160 to your computer and use it in GitHub Desktop.
Save nerdfiles/53f4e17fb64dc49e1160 to your computer and use it in GitHub Desktop.
Columnize HTML block for atomic commits
RegEx:
/\(\S \W\=\)/\1\r/g
Input:
<input type="email" name="email" class="form-control radius" placeholder="Your email">
Output:
<input
type="email"
name="email"
class="form-control
radius"
placeholder="Your
email">
Input:
<button type="submit" class="send_email_to_agent_button radius alert" title="Contact Property">Contatar Propriedade</button>
Output:
<button
type="submit"
class="send_email_to_agent_button
radius
alert"
title="Contact
Property">Contatar
Propriedade</button>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment