sass-site/yard/default/fulldoc/html/full_list_method.erb

8 lines
254 B
Plaintext
Raw Normal View History

2018-03-09 22:28:44 +01:00
<% n = 1 %>
<% @items.each do |item| %>
<li class="r<%= n %> <%= item.has_tag?(:deprecated) ? 'deprecated' : '' %>">
<%= linkify item, h(item.name(true)) %>
<small><%= item.namespace.title %></small>
</li>
<% n = n == 2 ? 1 : 2 %>
<% end %>