Markdown()

Converts the MarkDown string to HTML, optionally preserving the HTML code prior to encoding. http://markdownj.org/

Usage

STRING = Markdown( markdown, escapehtml )
Argument Summary
markdown string representing the MarkDown language to be converted to HTML
escapehtml flag to determine if the existing HTML should be escaped before encoding; defaults to true [optional]

Calling

Supports named-parameter calling allowing you to use the function like:

Markdown(
   markdown=?, 
   escapehtml=?
);

Supports passing parameters as a structure using ArgumentCollection:

Markdown( ArgumentCollection={
   markdown : ?, 
   escapehtml : ?
} );