Rest
...sub: (A variant taking a plain JS string as input and parsing it.
Useful for cases when you already have a string (e.g. from some server) and want to parse it.
Escape a string to be safely used in HTML.
Note: this function is in most cases not needed, as
html
function handles allstring
s passed to it automatically as plain text.
Add HTML formatting to the text given the plain text and entities contained in it.
Optional
options: HtmlUnparseOptions
Tagged template based HTML-to-entities parser function
Additionally,
md
function has two static methods:html.escape
- escape a string to be safely used in HTML (should not be needed in most cases, ashtml
function itself handles allstring
s passed to it automatically as plain text)html.unparse
- add HTML formatting to the text given the plain text and entities contained in it