Djot Markup adds support for the Djot markup language in WordPress. Djot is created by John MacFarlane (creator of CommonMark and Pandoc) and offers cleaner syntax with more consistent parsing rules than Markdown.
[djot]...[/djot] in your content{djot}...{/djot} blocksShortcode:
[djot]
# Hello World
This is _emphasized_ and this is *strong*.
- List item 1
- List item 2
[/djot]
Template Tags:
<?php
$html = wpdjot_to_html('# Hello *World*!');
wpdjot_the('# _Hello_ *World*!');
?>