2bc352f305
Add support for publisher, address, pubPlace, and date variables.
51 lines
990 B
XML
51 lines
990 B
XML
<?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>
|
|
<title>$title$</title>
|
|
$for(author)$
|
|
<author>$author$</author>
|
|
$endfor$
|
|
</titleStmt>
|
|
<publicationStmt>
|
|
$if(publicationStmt)$
|
|
<p>$if(publicationStmt)$$publicationStmt$$endif$</p>
|
|
$endif$
|
|
$if(license)$
|
|
<availability><licence>$license$</licence></availability>
|
|
$endif$
|
|
$if(publisher)$
|
|
<publisher>$publisher$</publisher>
|
|
$endif$
|
|
$if(pubPlace)$
|
|
<pubPlace>$pubPlace$</pubPlace>
|
|
$endif$
|
|
$if(address)$
|
|
<address>$address$</address>
|
|
$endif$
|
|
$if(date)$
|
|
<date>$date$</date>
|
|
$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>
|