Sha256: f8da1af61dbcac2c6337d50f7a8f420d941ebf251ca29a8bae10154ee51ae56c
Contents?: true
Size: 593 Bytes
Versions: 1
Compression:
Stored size: 593 Bytes
Contents
module Slideshow module MarkdownEngines def rdiscount_to_html( content ) RDiscount.new( content ).to_html end def rpeg_markdown_to_html( content ) PEGMarkdown.new( content ).to_html end def maruku_to_html( content ) Maruku.new( content, {:on_error => :raise} ).to_html end def bluecloth_to_html( content ) BlueCloth.new( content ).to_html end def kramdown_to_html( content ) Kramdown::Document.new( content ).to_html end end # module MarkdownEngines end # module Slideshow class Slideshow::Gen include Slideshow::MarkdownEngines end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
slideshow-0.9.2 | lib/slideshow/markdown.rb |