lib/rdoc/generator/template/darkfish/index.rhtml in rdoc-2.4.3 vs lib/rdoc/generator/template/darkfish/index.rhtml in rdoc-2.5
- old
+ new
@@ -37,17 +37,17 @@
<li class="file"><a href="<%= file.path %>"><%= h file.base_name %></a></li>
<% end %>
</ul>
<% end %>
- <h2>Classes/Modules</h2>
+ <h2 id="classes">Classes/Modules</h2>
<ul>
<% @modsort.each do |klass| %>
<li class="<%= klass.type %>"><a href="<%= klass.path %>"><%= klass.full_name %></a></li>
<% end %>
</ul>
- <h2>Methods</h2>
+ <h2 id="methods">Methods</h2>
<ul>
<% RDoc::TopLevel.all_classes_and_modules.map do |mod|
mod.method_list
end.flatten.sort.each do |method| %>
<li><a href="<%= method.path %>"><%= method.pretty_name %> — <%= method.parent.full_name %></a></li>