Ticket #39 (new enhancement)

Opened 2 years ago

Last modified 21 months ago

Add support for MultiMarkdown

Reported by: deveiant Owned by: deveiant
Priority: normal Milestone: New Features Post Markdown 1.0.1
Component: MarkdownSyntax Version: 1.0.1
Severity: normal Keywords: multimarkdown alternate syntax
Cc:

Description

I like MultiMarkdown, and could use it for all kinds of stuff myself, so it'd be nice to be able to turn on support for it. Something like:

bc = BlueCloth.new( my_document )
bc.multimarkdown = true
puts bc.to_html

or

puts BlueCloth.new( my_document, :multimarkdown => true ).to_html

Change History

Changed 21 months ago by andrea

I also would appreciate this feature. Also it should be possible to access the properties

Asusming that the document is

title: Hello
Date: 18 jan 2006

Content content

it should be possible to write:

bc = BlueCloth.new( multiMarkDown )
bc.multimarkdown = true

puts bc['title']

Note: See TracTickets for help on using tickets.