lib/slideshow/markup/markdown.rb in slideshow-1.0.3 vs lib/slideshow/markup/markdown.rb in slideshow-1.0.4

- old
+ new

@@ -1,14 +1,14 @@ module Slideshow module MarkdownEngines - ## note: code move to its own gem, that is, markdown_select - ## see https://github.com/geraldb/markdown_select + ## note: code moved to its own gem, that is, markdown + ## see https://github.com/geraldb/markdown def markdown_to_html( content ) ## puts " Converting Markdown-text (#{content.length} bytes) to HTML using library '#{@markdown_libs.first}' calling '#{mn}'..." - MarkdownSelect.new( content ).to_html + Markdown.new( content ).to_html end end # module MarkdownEngines end # module Slideshow \ No newline at end of file