referator/test/footnotes.erb
Alex Kotov 9dca64928b
tmp
2024-02-19 06:22:54 +04:00

25 lines
530 B
Text

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