# File lib/rabbit/source-generator/hiki.rb, line 34 def definition_list_item(item, description) ":#{item}:#{description}" end
# File lib/rabbit/source-generator/hiki.rb, line 30 def heading(level, title) ("!" * level) + " #{title}" end
# File lib/rabbit/source-generator/hiki.rb, line 42 def image(source, options={}) lines = [ "{{image(#{source.dump},", " {", ] options.each do |key, value| lines << " #{key.to_s.dump} => #{value.inspect}," end lines << " })}}" lines.join("\n") end
Generated with the Darkfish Rdoc Generator 2.