Parse the body of the plugin using a Markdown parser. Introduced in Tiki 20. Go to the source code Preferences required: wikiplugin_markdown
Parameters
(body of plugin) - Markdown syntax to be parsed
no parameters
Examples
Example 1
This code:
Copy to clipboard
{MARKDOWN()}
# This is an h1 tag
## This is an h2 tag
###### This is an h6 tag
*This text will be italic* (hard line break after this because of two spaces -->)
_This will also be italic_
**This text will be bold** (there's alternative syntax for line break after this parenthesis)\
__This will also be bold__
_You **can** combine them_
{MARKDOWN}
Would produce on this site:
This is an h1 tag
This is an h2 tag
This is an h6 tag
This text will be italic (hard line break after this because of two spaces -->) This will also be italic
This text will be bold (there's alternative syntax for line break after this parenthesis) This will also be bold