diff options
| author | Jens Getreu <getreu@web.de> | 2017-08-22 07:10:41 +0300 | 
|---|---|---|
| committer | John MacFarlane <jgm@berkeley.edu> | 2017-08-21 21:10:41 -0700 | 
| commit | 9375e50b963fe9b2ba57260d56df08a76252d10a (patch) | |
| tree | 87b1d191f016eaa23ce7167db4622ecf50c64fe1 /data | |
| parent | 0a839cbdc982217819c08c918cca75f6f56eabbb (diff) | |
| download | pandoc-9375e50b963fe9b2ba57260d56df08a76252d10a.tar.gz | |
docbook5 template: use lang and subtitle variables (#3855)
Diffstat (limited to 'data')
| -rw-r--r-- | data/templates/default.docbook5 | 8 | 
1 files changed, 7 insertions, 1 deletions
diff --git a/data/templates/default.docbook5 b/data/templates/default.docbook5 index 415ccf9c3..9f88575e8 100644 --- a/data/templates/default.docbook5 +++ b/data/templates/default.docbook5 @@ -5,9 +5,15 @@  $if(mathml)$    xmlns:mml="http://www.w3.org/1998/Math/MathML"  $endif$ -  xmlns:xlink="http://www.w3.org/1999/xlink" > +  xmlns:xlink="http://www.w3.org/1999/xlink" +$if(lang)$  +  xml:lang="$lang$" +$endif$ >    <info>      <title>$title$</title> +$if(subtitle)$ +    <subtitle>$subtitle$</subtitle> +$endif$  $if(author)$      <authorgroup>  $for(author)$  | 
