LESS is very cool. I always wondered if there are any good html generators that allow me to write a form more easily or do other things. Is there something somewhat similar but for html?

link|improve this question

74% accept rate
Hmmm, yes, ASP.NET, PHP, JSP, Ruby on Rails, etc :o) – Maxim Gueivandov Jan 19 '11 at 14:00
feedback

2 Answers

up vote 5 down vote accepted

Tried Haml?

From its website, this Haml code:

#profile
  .left.column
    #date= print_date
    #address= current_user.address
  .right.column
    #email= current_user.email
    #bio= current_user.bio

gets converted into this HTML.

<div id="profile">
  <div class="left column">
    <div id="date"><%= print_date %></div>
    <div id="address"><%= current_user.address %></div>
  </div>
  <div class="right column">
    <div id="email"><%= current_user.email %></div>
    <div id="bio"><%= current_user.bio %></div>
  </div>
</div>

If you like Haml, then you might also like Sass, which is Haml for CSS. Actually, Haml comes with Sass. You can still use LESS if you like.

link|improve this answer
feedback

Check out Zen-Coding.

Uses a CSS style markup to generate HTML with some nice features.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.