Class MarkdownParserExtended
Enhances the MarkdownParser classes with a couple of extensions for marking up code snippets, auto-link parsing and embedding Font-Awesome icons.
The extensions are as follows:
Code HTML Prefix and PostFix
You can use thecCodeBlockStartHtml
andcCodeBlockEndHtml
properties to specify the HTML that is used to specify a language. Use###language###
in the string to replace the language specified in the markup.FontAwesome Icon Support Allows specifying font-awesome icons using simplified syntax of
@ icon-icon-name
which makes it easier to embed icons into text.
foxpro
foxpro
loParser = CREATEOBJECT("MarkdownParserExtended")
loParser.cCodeBlockStartHtml = [<pre lang="###language###">] + CRLF
loParser.cCodeBlockEndHtml = [</pre>]
lcHtml = loParser.Parse(lcMarkdownText)
Class Members
Member | Description | |
---|---|---|
![]() |
Parse |
o.Parse(lcMarkdownText)
|
See also
Class MarkdownParser© West Wind Technologies, 2025 • Updated: 2025-03-12
Comment or report problem with topic