mergMarkdownToXHTML

Typefunction
DictionaryLCS
LibraryLiveCode Script
Syntax
mergMarkdownToXHTML(<pMarkdown>, [<pNoIntraEmphasis>, <pTable>, <pFencedCode>, <pAutoLink>, <pStrikethrough>, <pSpaceHeaders>, <pSuperscript>, <pLaxSpacing>])
Associationsmergmarkdown
Summary

Returns the XHTML translation of the markdown document.

Introduced8.0
OSios, android, linux, mac, windows
Platformsmobile, desktop, server
Parameters
NameTypeDescription
pMarkdown

The markdown text to translate.

pNoIntraEmphasis

Don't add emphasis if there is no space on either side of the underscores. If true this will be emphasized but_this_won't be.

pTable

Support tables.

pFencedCode

Support fenced code.

pAutoLink

Auto link urls in the text

pStrikethrough

Use a double tilde(~) either side of a word to indicate ~~strikethrough~~

pSpaceHeaders

If true forces a space after the # for headers

pSuperscript

If true use ^ to indicate the start of a superscript word

pLaxSpacing

If true allows lax spacing. For example it will allow no space between a paragraph and a list.

Example
put mergMarkdownToXHTML(theMarkdownText,,true) into theHTML

Values
NameTypeDescription
return

XHTML

Description

Returns the XHTML translation of the markdown document.

Tagsexternals