Pastie now auto-senses if line-wrap is a bad or good idea. Feedback?
## mark a section (Learn more)
class # This is articles/article.rhtml <h2><%= @article.title %></h2> <p> <%= @article.body %> </p> <% if @article.has_comments? %> <ul> <%= render :partial => 'comment', :collection => comment.children %> </ul> <% end %> # This is articles/_comment.rhtml <li> <%= comment.title %> <p> <%= comment.body %> </p> <% if comment.has_children? %> <ul> <%= render :partial => 'comment', :collection => comment.children %> </ul> <% end %> </li>
This paste will be private.
From the Design Piracy series on my blog: