FILE::MDHTML 1g 2025-09-09 laplante@plcb.ca GOWEB/STRING


title: “file::mdHtml Function Documentation” author: “laplante@plcb.ca” date: “2025-09-09” version: “1.0.0” section: “1g”

category: “GOWEB/STRING”

Name

file::mdHtml — Markdown to HTML

Synopsis

file::mdHtml or mdHtml(string…)

Description

This function convert the Markdown string to HTML.

Examples

res={{
    str := "# header
## subheader
para
[string::crc32 — Compute CRC32 checksum of a string](string-crc32.html)
";
    mdHtml(str);
    "\n\n";
    mdText(str);

}}.

return 

res=<h1>header</h1>
<h2>subheader</h2>
<p>para
<a href="string-crc32.html">string::crc32 — Compute CRC32 checksum of a string</a></p>


header
subheader
para
string::crc32 — Compute CRC32 checksum of a string
.

Author

laplante@plcb.ca

See also

Version