This is the method that turns markdown source into xhtml.
This is the method that turns markdown source into xhtml.
Overwrite this method to return a custom decorator if you want modified output.
Overwrite this method to return a custom decorator if you want modified output.
Simple Standalone Markdown transformer. Use this if you simply want to transform a block of markdown without any special options. val input:String = ... val xhtml:String = new ActuariusTransformer()(input)
Note that this markdown parser isn't inherently thread-safe, as Scala Parser Combinators aren't, so this class instantiates a SingleThreadedTransformer for each thread. You'll need to write your own pooled implementation if this isn't efficient for your usage.