Sha256: 177a4f4bc2283307f81c3f4db409b420222e93d3edb999d6cd4af1439f944f6e

Contents?: true

Size: 499 Bytes

Versions: 3

Compression:

Stored size: 499 Bytes

Contents

module Slideshow
  module MarkdownEngines

  ## note: code move to its own gem, that is, markdown_select
  ## see https://github.com/geraldb/markdown_select
  
  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
  end

end   # module MarkdownEngines
end # module Slideshow

class Slideshow::Gen
  include Slideshow::MarkdownEngines
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
slideshow-1.0.3 lib/slideshow/markup/markdown.rb
slideshow-1.0.2 lib/slideshow/markup/markdown.rb
slideshow-1.0.1 lib/slideshow/markup/markdown.rb