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.tei | |
parent | e7d5d8957c77e125b8a1c7eb51356542633d0796 (diff) | |
download | pandoc-templates-ac3dc50580d7185d18dd4916782904fd733b3bfd.tar.gz pandoc-templates-ac3dc50580d7185d18dd4916782904fd733b3bfd.zip |
Initial commit, 2.0.5
Diffstat (limited to 'default.tei')
-rw-r--r-- | default.tei | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/default.tei b/default.tei new file mode 100644 index 0000000..3778dcc --- /dev/null +++ b/default.tei | |||
@@ -0,0 +1,39 @@ | |||
1 | <?xml version="1.0" encoding="utf-8"?> | ||
2 | <TEI xmlns="http://www.tei-c.org/ns/1.0"$if(lang)$ xml:lang="$lang$"$endif$> | ||
3 | <teiHeader> | ||
4 | <fileDesc> | ||
5 | <titleStmt> | ||
6 | $if(title)$ | ||
7 | <title>$title$</title> | ||
8 | $endif$ | ||
9 | $for(author)$ | ||
10 | $author$ | ||
11 | $endfor$ | ||
12 | </titleStmt> | ||
13 | <publicationStmt> | ||
14 | <p>$if(publicationStmt)$$publicationStmt$$endif$</p> | ||
15 | $if(license)$ | ||
16 | <availability><licence>$license$</licence></availability> | ||
17 | $endif$ | ||
18 | </publicationStmt> | ||
19 | <sourceDesc> | ||
20 | $if(sourceDesc)$ | ||
21 | $sourceDesc$ | ||
22 | $else$ | ||
23 | <p>Produced by pandoc.</p> | ||
24 | $endif$ | ||
25 | </sourceDesc> | ||
26 | </fileDesc> | ||
27 | </teiHeader> | ||
28 | <text> | ||
29 | $for(include-before)$ | ||
30 | $include-before$ | ||
31 | $endfor$ | ||
32 | <body> | ||
33 | $body$ | ||
34 | </body> | ||
35 | $for(include-after)$ | ||
36 | $include-after$ | ||
37 | $endfor$ | ||
38 | </text> | ||
39 | </TEI> | ||