referator/test/footnotes.html.erb
2023-09-30 01:12:59 +04:00

28 lines
660 B
Text

<% self_notes = notes.select { |note| note['kind'] == 'self' } -%>
<% link_notes = notes.select { |note| note['kind'] == 'link' } -%>
<%# -%>
<% unless self_notes.empty? -%>
<h2>Self references</h2>
<ol>
<% self_notes.each do |note| -%>
<li id="<%= note['anchor'] %>" value="<%= note['index'] %>">
<a href="<%= note['id'] %>.html"><%= note['text'] %></a>
</li>
<% end -%>
</ol>
<% end -%>
<%# -%>
<% unless link_notes.empty? -%>
<h2>Link references</h2>
<ol>
<% link_notes.each do |note| -%>
<li id="<%= note['anchor'] %>" value="<%= note['index'] %>">
<a href="<%= note['url'] %>"><%= note['text'] %></a>
</li>
<% end -%>
</ol>
<% end -%>