diff options
author | binaarinen <53334195+binaarinen@users.noreply.github.com> | 2021-12-19 21:10:41 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-12-19 12:10:41 -0800 |
commit | 0610f16f7f684b320325b6c0b501725138d10a52 (patch) | |
tree | a35f19aec4719a84d0b006bbfdc70b17c3c45970 /data/templates | |
parent | f8f03c2ffca168d5c897febc2a631c2605973699 (diff) | |
download | pandoc-0610f16f7f684b320325b6c0b501725138d10a52.tar.gz |
Add a writer for Markua 0.10 (#7729)
Markua is a markdown variant used by Leanpub.
More information about Markua can be found at https://leanpub.com/markua/read.
Adds a new exported function `writeMarkua` from T.P.Writers.Markdown.
[API change]
Closes #1871.
Co-authored by Tim Wisotzki and Samuel Lemmenmeier.
Diffstat (limited to 'data/templates')
-rw-r--r-- | data/templates/default.markua | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/data/templates/default.markua b/data/templates/default.markua new file mode 100644 index 000000000..9f6ca96de --- /dev/null +++ b/data/templates/default.markua @@ -0,0 +1,21 @@ +$if(titleblock)$ +$titleblock$ + +$endif$ +$for(header-includes)$ +$header-includes$ + +$endfor$ +$for(include-before)$ +$include-before$ + +$endfor$ +$if(toc)$ +$table-of-contents$ + +$endif$ +$body$ +$for(include-after)$ + +$include-after$ +$endfor$ |