user34537
user34537

Reputation:

HTML generator?

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?

Upvotes: 7

Views: 747

Answers (3)

Roman Polen.
Roman Polen.

Reputation: 559

Did one Blended-HTML On-line Layout Generator Uses CSS3 and HTML5 markup to generate the source code for HTML page layout on-line.

Upvotes: 0

Thai
Thai

Reputation: 11362

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.

Upvotes: 5

Alan Whitelaw
Alan Whitelaw

Reputation: 16900

Check out Zen-Coding.

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

Upvotes: 5

Related Questions