lib/templates/classfile.md.erb in rdoc-markdown-0.1.4 vs lib/templates/classfile.md.erb in rdoc-markdown-0.1.5
- old
+ new
@@ -1,22 +1,21 @@
-# <%= klass&.name %>
-## <% if klass.type == 'class' %><%= klass.type.capitalize %>[<%= klass.full_name %>](<%= klass&.path %>)<% if klass.superclass %> inherits from <% end %><% unless String === klass.superclass %> [<%= klass.superclass&.name %>](<%= klass.superclass&.path %>) <% else %> <%= klass.superclass %> <% end %> <% else %> <%= klass.type.capitalize %> [<%= klass&.name %>](<%= klass&.path %>) <% end %>
-<% if klass.description && !klass.description.empty? %><%= klass.description %><% end %>
+# <%= klass.name %>
+## <% if klass.type == 'class' %><%= klass.type.capitalize %> [<%= klass.full_name %>](<%= klass&.path %>)<% if klass.superclass %> inherits from <% end %><% unless String === klass.superclass %>[<%= klass.superclass&.name %>](<%= klass.superclass&.path %>) <% else %> <%= klass.superclass %> <% end %> <% else %> <%= klass.type.capitalize %>[<%= klass&.name %>](<%= klass&.path %>) <% end %>
+<% if klass.description && !klass.description.empty? %><%= h klass.description %><% end %>
<% unless klass.constants.empty? %>
### Constants
-<% klass.constants.sort_by { |x| x&.name }.each do |const| %> <%= const&.name %> <% end %>
-<% end %>
+<% klass.constants.sort_by { |x| x.name }.each do |const| %> <%= h const.name %>
+<%= h const.description %>
+<% end %><% end %>
<% unless klass.attributes.empty? %>
### Attributes
-<% klass.attributes.sort_by { |x| x&.name }.each do |attr| %><%= attr&.name %>
+<% klass.attributes.sort_by { |x| x.name }.each do |attr| %><%= h attr.name %>
<%= attr.rw %>
-<%= attr.description %>
-<% end %><% end %>
+<%= h attr.description %><% end %><% end %>
<% unless klass_methods.empty? %>
### Public Class Methods
-<% klass_methods.each do |method| %>[<%= method&.name %><%= method.params %>](<%= method.aref %>)
-<%= method.description %><% end %>
-<% end %>
+<% klass_methods.each do |method| %>[<%= h method.name %><%= h method.params %>](<%= method.aref %>)
+<%= h method.description %><% end %><% end %>
<% unless instance_methods.empty? %>
### Public Instance Methods
-<% instance_methods.each do |method| %>[<%= method&.name %><%= method.params %>](<%= method.aref %>)
-<%= method.description %><% end %><% end %>
+<% instance_methods.each do |method| %>[<%= h method.name %><%= h method.params %>](<%= method.aref %>)
+<% if method.name %><%= h method.description %><% end %><% end %><% end %>