diff options
Diffstat (limited to 'data/templates')
-rw-r--r-- | data/templates/default.asciidoctor | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/data/templates/default.asciidoctor b/data/templates/default.asciidoctor new file mode 100644 index 000000000..7668a8325 --- /dev/null +++ b/data/templates/default.asciidoctor @@ -0,0 +1,38 @@ +$if(titleblock)$ += $title$ +$if(author)$ +$for(author)$$author$$sep$; $endfor$ +$endif$ +$if(date)$ +$date$ +$endif$ +$if(keywords)$ +:keywords: $for(keywords)$$keywords$$sep$, $endfor$ +$endif$ +$if(lang)$ +:lang: $lang$ +$endif$ +$if(toc)$ +:toc: +$endif$ + +$endif$ +$if(abstract)$ +[abstract] +== Abstract +$abstract$ + +$endif$ +$for(header-includes)$ +$header-includes$ + +$endfor$ +$for(include-before)$ +$include-before$ + +$endfor$ +$body$ +$for(include-after)$ + +$include-after$ +$endfor$ |