Sha256: 0ad28a7c55dad37867f1c2414f4bcbb1ab2f2f0039d0f97e23475f1efdca4b91
Contents?: true
Size: 480 Bytes
Versions: 27
Compression:
Stored size: 480 Bytes
Contents
module Slideshow module MarkdownEngines ## 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}'..." Markdown.new( content ).to_html end end # module MarkdownEngines end # module Slideshow class Slideshow::Gen include Slideshow::MarkdownEngines end
Version data entries
27 entries across 27 versions & 1 rubygems