I have a rails project, the views only consist with HTML.ERB files, my client wants to convert ERB to HAML. I have too many views file. It's taking a huge amount of time to convert file by file. So that any simply way I can convert HTML to haml? I installed haml plugin under my project.
|
There you go: http://html2haml.heroku.com/ |
|||||||
|
|
You can use from the command line html2haml
If you want to convert all your files in one go, look at this article : http://shifteleven.com/articles/2008/06/08/converting-erb-to-haml-snippet |
||||
|
|
A more user-friendly alternative to the selected answer. |
||||
|
|
|
EDIT: html2haml does work as advertised, however you must use version obtained from the current master branch of the haml github repoistory. The version of html2haml included with the haml gem currently available from rubygems is no good. This is the version you will get if you were to do |
|||||
|
|
A Feb 2012 post here gives a step-by-step and a handy, reusable rake task that does the job of converting a whole project into haml. (I can't take credit.) |
|||
|
|
|
html2haml is now in the html2haml gem, so you can use:
|
|||
|
|