Merge pull request #179 from c-forster/teiwriter
Template for a TEI Writer.
This commit is contained in:
commit
40175cfc59
1 changed files with 39 additions and 0 deletions
39
default.tei
Normal file
39
default.tei
Normal file
|
@ -0,0 +1,39 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<TEI xmlns="http://www.tei-c.org/ns/1.0"$if(lang)$ xml:lang="$lang$"$endif$>
|
||||
<teiHeader>
|
||||
<fileDesc>
|
||||
<titleStmt>
|
||||
$if(title)$
|
||||
<title>$title$</title>
|
||||
$endif$
|
||||
$for(author)$
|
||||
$author$
|
||||
$endfor$
|
||||
</titleStmt>
|
||||
<publicationStmt>
|
||||
<p>$if(publicationStmt)$$publicationStmt$$endif$</p>
|
||||
$if(license)$
|
||||
<availability><licence>$license$</licence></availability>
|
||||
$endif$
|
||||
</publicationStmt>
|
||||
<sourceDesc>
|
||||
$if(sourceDesc)$
|
||||
$sourceDesc$
|
||||
$else$
|
||||
<p>Produced by pandoc.</p>
|
||||
$endif$
|
||||
</sourceDesc>
|
||||
</fileDesc>
|
||||
</teiHeader>
|
||||
<text>
|
||||
$for(include-before)$
|
||||
$include-before$
|
||||
$endfor$
|
||||
<body>
|
||||
$body$
|
||||
</body>
|
||||
$for(include-after)$
|
||||
$include-after$
|
||||
$endfor$
|
||||
</text>
|
||||
</TEI>
|
Loading…
Reference in a new issue