Sha256: 0c1beed1fd79767df9bcdf3abef9fcadda9635604937b5a877e3fde9deb630d0

Contents?: true

Size: 304 Bytes

Versions: 5

Compression:

Stored size: 304 Bytes

Contents

module Markdown
  module Engine

    def rpeg_markdown_to_html( content, options={} )
      puts "  Converting Markdown-text (#{@content.length} bytes) to HTML using library rpeg_markdown..."

      PEGMarkdown.new( content ).to_html
    end

  end # module Engine
end # module Markdown        

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
markdown-1.0.0 lib/markdown/engines/rpeg_markdown.rb
markdown-0.5.0.beta1 lib/markdown/engines/rpeg_markdown.rb
markdown-0.4.0 lib/markdown/engines/rpeg_markdown.rb
markdown-0.3.0 lib/markdown/engines/rpeg_markdown.rb
markdown-0.2.0 lib/markdown/engines/rpeg_markdown.rb