diff options
author | John MacFarlane <jgm@berkeley.edu> | 2017-12-27 09:29:34 -0800 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2017-12-27 09:29:34 -0800 |
commit | ac3dc50580d7185d18dd4916782904fd733b3bfd (patch) | |
tree | 23ec8e7c0c0806fde9a07a1b1d271b814343daf8 /default.asciidoc | |
parent | e7d5d8957c77e125b8a1c7eb51356542633d0796 (diff) | |
download | pandoc-templates-ac3dc50580d7185d18dd4916782904fd733b3bfd.tar.gz pandoc-templates-ac3dc50580d7185d18dd4916782904fd733b3bfd.zip |
Initial commit, 2.0.5
Diffstat (limited to 'default.asciidoc')
-rw-r--r-- | default.asciidoc | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/default.asciidoc b/default.asciidoc new file mode 100644 index 0000000..2721546 --- /dev/null +++ b/default.asciidoc | |||
@@ -0,0 +1,35 @@ | |||
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(toc)$ | ||
13 | :toc: | ||
14 | $endif$ | ||
15 | |||
16 | $endif$ | ||
17 | $if(abstract)$ | ||
18 | [abstract] | ||
19 | == Abstract | ||
20 | $abstract$ | ||
21 | |||
22 | $endif$ | ||
23 | $for(header-includes)$ | ||
24 | $header-includes$ | ||
25 | |||
26 | $endfor$ | ||
27 | $for(include-before)$ | ||
28 | $include-before$ | ||
29 | |||
30 | $endfor$ | ||
31 | $body$ | ||
32 | $for(include-after)$ | ||
33 | |||
34 | $include-after$ | ||
35 | $endfor$ | ||