Base
# File lib/redcarpet/render_man.rb, line 9 def block_code(code, language) "\n.nf\n#{normal_text(code)}\n.fi\n" end
# File lib/redcarpet/render_man.rb, line 13 def codespan(code) block_code(code, nil) end
# File lib/redcarpet/render_man.rb, line 30 def double_emphasis(text) "\\fB#{text}\\fP" end
# File lib/redcarpet/render_man.rb, line 34 def emphasis(text) "\\fI#{text}\\fP" end
# File lib/redcarpet/render_man.rb, line 17 def header(title, level) case level when 1 "\n.TH #{title}\n" when 2 "\n.SH #{title}\n" when 3 "\n.SS #{title}\n" end end
# File lib/redcarpet/render_man.rb, line 38 def linebreak "\n.LP\n" end
# File lib/redcarpet/render_man.rb, line 46 def list(content, list_type) case list_type when :ordered "\n\n.nr step 0 1\n#{content}\n" when :unordered "\n.\n#{content}\n" end end
# File lib/redcarpet/render_man.rb, line 55 def list_item(content, list_type) case list_type when :ordered ".IP \\n+[step]\n#{content.strip}\n" when :unordered ".IP \\[bu] 2 \n#{content.strip}\n" end end
Generated with the Darkfish Rdoc Generator 2.