def init
super
sections.place(:configuration_summary).before(:method_summary)
end
# Highlight stuff
def hl(code)
case code
when :do, :end then %(#{code})
when Symbol then %(#{code.inspect})
when Integer then %(#{code})
when String then %(#{code.inspect})
when true, false then %(#{code.inspect})
when nil then %(#{code.inspect})
else code
end
end