Wikipedia:
RHTML |
RHTML is the default template engine used by the Ruby on Rails web application framework. It allows a mix of HTML and inline Ruby code.
Example:
<ul>
<% People.find( :all ).each do |person| %>
<li><%= person.name %></li>
<% end %>
</ul>
This entry is from Wikipedia, the leading user-contributed encyclopedia. It may not have been reviewed by professional editors (see full disclaimer)

