summaryrefslogtreecommitdiffstats
path: root/default.asciidoctor
diff options
context:
space:
mode:
authorJohn MacFarlane <jgm@berkeley.edu>2019-03-03 11:28:56 -0800
committerJohn MacFarlane <jgm@berkeley.edu>2019-03-03 11:28:56 -0800
commitc47460fce5cebb17f2ecb1ad195d244c75887d8c (patch)
tree85c2e72750473c9ea3141e93aae0280ed4992f20 /default.asciidoctor
parent0be17b21ce1954f16f07a495cb1062145b4d69df (diff)
downloadpandoc-templates-c47460fce5cebb17f2ecb1ad195d244c75887d8c.tar.gz
pandoc-templates-c47460fce5cebb17f2ecb1ad195d244c75887d8c.zip
Updated templates for pandoc 2.7
Diffstat (limited to 'default.asciidoctor')
-rw-r--r--default.asciidoctor41
1 files changed, 41 insertions, 0 deletions
diff --git a/default.asciidoctor b/default.asciidoctor
new file mode 100644
index 0000000..2616b05
--- /dev/null
+++ b/default.asciidoctor
@@ -0,0 +1,41 @@
1$if(titleblock)$
2= $title$
3$if(author)$
4$for(author)$$author$$sep$; $endfor$
5$endif$
6$if(date)$
7$date$
8$endif$
9$if(keywords)$
10:keywords: $for(keywords)$$keywords$$sep$, $endfor$
11$endif$
12$if(lang)$
13:lang: $lang$
14$endif$
15$if(toc)$
16:toc:
17$endif$
18$if(math)$
19:stem: latexmath
20$endif$
21
22$endif$
23$if(abstract)$
24[abstract]
25== Abstract
26$abstract$
27
28$endif$
29$for(header-includes)$
30$header-includes$
31
32$endfor$
33$for(include-before)$
34$include-before$
35
36$endfor$
37$body$
38$for(include-after)$
39
40$include-after$
41$endfor$