Sha256: 9e3fa8d18d43625107287c05ca0d463a010549d0514d2dfd25342f57bf0ae40e
Contents?: true
Size: 923 Bytes
Versions: 2
Compression:
Stored size: 923 Bytes
Contents
markup(:markdown, /md|mkdn?|mdown|markdown/) do |content| Markdown.new(content).to_html end markup(:redcloth, /textile/) do |content| RedCloth.new(content).to_html end markup('github/markup/rdoc', /rdoc/) do |content| GitHub::Markup::RDoc.new(content).to_html end markup('org-ruby', /org/) do |content| Orgmode::Parser.new(content).to_html end markup(:creole, /creole/) do |content| Creole.creolize(content) end command(:rest2html, /re?st(\.txt)?/) command('asciidoc -s --backend=xhtml11 -o - -', /asciidoc/) # pod2html is nice enough to generate a full-on HTML document for us, # so we return the favor by ripping out the good parts. # # Any block passed to `command` will be handed the command's STDOUT for # post processing. command("/usr/bin/env perl -MPod::Simple::HTML -e Pod::Simple::HTML::go", /pod/) do |rendered| if rendered =~ /<!-- start doc -->\s*(.+)\s*<!-- end doc -->/mi $1 end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
github-markup-0.5.1 | lib/github/markups.rb |
github-markup-0.5.0 | lib/github/markups.rb |