Skip to content

Instantly share code, notes, and snippets.

@mdarby
Created October 23, 2008 20:41
Show Gist options
  • Save mdarby/19195 to your computer and use it in GitHub Desktop.
Save mdarby/19195 to your computer and use it in GitHub Desktop.
Here is an Textmate snippet that allows you to easily convert HTML and ERB templates to Haml. It also re-converts certain characters back to their normal form after conversion (for some reason html2haml converts stuff like less-than signs and quotes to th
#!/bin/sh
html2haml -r "$TM_FILEPATH" | sed 's/&gt;/>/g' | sed 's/&lt;/</g' | sed 's/- end//g' | sed 's/&quot;/"/g' | sed 's/&amp;/\&/g'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment