lib/asciidoctor/render_templates.rb in asciidoctor-0.0.1 vs lib/asciidoctor/render_templates.rb in asciidoctor-0.0.2
- old
+ new
@@ -162,12 +162,12 @@
class SectionUlistTemplate < BaseTemplate
def template
@template ||= ERB.new <<-EOF
<div class='ulist'>
<ul>
- <% content.each do |li| %>
- <li><p><%= li %></p></li>
- <% end %>
+ <% content.each do |li| %>
+ <%= li %>
+ <% end %>
</ul>
</div>
EOF
end
end