Class MarkdownParser

This class and the Markdown() helper function, provide Markdown parsing for converting Markdown text to HTML.

In it's simplest for you can do:

foxpro
foxpro
DO MarkdownParser && Load Library (once) lcMarkdown = "This is **bold** text and this is [linked](https://west-wind.com)." lcHtml = Markdown(lcMarkdown)

The helper function is the preferred way to use the Markdown parser as it caches the Markdown parser rather than recreating the Markdown processing pipeline for each request.

Alternately you can explicitly use the MarkdownParser or MarkdownParserExtended classes, which give a little more control over various options:

foxpro
foxpro
lcMarkdown = "This is **bold** text and this is [linked](https://west-wind.com)." loParser = CREATEOBJECT("MarkdownParser") loParser.lSanitizeHtml = .T. llUtf8 = .T. && encode markdown to UTF8 before sending to Parser loParser.Parse(lcMarkdown,llUtf8)
Custom MarkdownParser

Remarks

Distribution dependencies:

  • wwdotnetbridge.dll
  • wwipstuff.dll
  • markdig.dll

Class Members

MemberDescription
Markdown (global function) This global function takes Markdown text and turns it into HTML. This function is a shortcut helper function uses the MarkdownParser/Extended classes to turn Markdown into HTML. The function…
o.MarkdownParser.Markdown(lcMarkdown,lnMode, llReload,llUtf8, llNoSanitizeHtml, llNoHtmlAllowed)
Parse Parses a Markdown text string to HTML using the CommonMark specification. Markdown is parsed in basic format with no additional fixups.
o.Parse(lcMarkdownText, llUtf8)
CreateParser This method creates an instance of the Markdown Parser processing pipeline and applies the configuration that determines what features the parser uses. This specific function creates a…
o.CreateParser()
lEncodeScriptBlocks If .T. handles `` script blocks in a special way by stripping them out of the document and then adding them back in after Markdown rendering. This preserves the original code and allows the script to…
lSanitizeHtml If `.T.` sanitizes the HTML for XSS attacks by stripping script blocks, `javascript:` directives and removing `onXXX` events from elements.
lNoHtmlAllowed If `.T.` doesn't process raw HTML inside of the Markdown. Instead the HTML is HTML Encoded and embedded into the documented as text.

Assembly: markdownparser.prg


See also

Class MarkdownParser
Class MarkdownParserExtended

© West Wind Technologies, 2025 • Updated: 2025-03-12
Comment or report problem with topic