Skip to content

Commit

Permalink
[ci skip] fix api doc header formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
Bulat Shakirzyanov committed Dec 15, 2014
1 parent c25192e commit cb40af5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nanoc/templates/docs/module/html/header.erb
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<div class="page-header">
<h1><small><% if object.has_tag?(:abstract) %> <span class="label label-info">abstract</span><% end %>
<% if object.has_tag?(:deprecated) %> <span class="label label-warning">deprecated</span><% end %><%= object.type %></small> <%= object.title %></h1>
<% if object.has_tag?(:deprecated) %> <span class="label label-warning">deprecated</span><% end %><%= object.type %></small> <% if object.title.to_s.length <= 36 %><%= object.title %><% else %><abbr title="<%= object.title %>"><%= object.name %></abbr><% end %></h1>
</div>
<%= yieldall %>
<% if CodeObjects::ClassObject === object && object.superclass %>
Expand Down

0 comments on commit cb40af5

Please sign in to comment.