Interface brl.markdown.IPrettifier - leonard-thieu/monkey GitHub Wiki
BeginPrettyBlock : String ()
EndPrettyBlock : String ()
PrettifyLine : String ( text:String )
Method BeginPrettyBlock : String ()
This method is called when a Markdown objects encounters a <pre>
tag, and should return an appropriate html block start tag, eg: <div>
.
Method EndPrettyBlock : String ()
This method is called when a Markdown object encounters a </pre>
tag, and should return an appropriate html block end tag, eg: </div>
.
This method is called by a Markdown object for every line inside a <pre>
block, and should returned an html 'prettified' version of text.