diff options
| author | John MacFarlane <jgm@berkeley.edu> | 2017-08-21 21:16:55 -0700 | 
|---|---|---|
| committer | John MacFarlane <jgm@berkeley.edu> | 2017-08-21 21:16:55 -0700 | 
| commit | 6cba21b4d307408e6ff44de495727fad89cd3069 (patch) | |
| tree | 26e0adfd7deaf32497aa59cd167a7c0d617d8a76 /data | |
| parent | 9375e50b963fe9b2ba57260d56df08a76252d10a (diff) | |
| download | pandoc-6cba21b4d307408e6ff44de495727fad89cd3069.tar.gz | |
Small improvement to #3855 - move lang attribute up.
So we don't have a dangling line with the closing `>` when
`lang` is not set.
Diffstat (limited to 'data')
| -rw-r--r-- | data/templates/default.docbook5 | 8 | 
1 files changed, 4 insertions, 4 deletions
| diff --git a/data/templates/default.docbook5 b/data/templates/default.docbook5 index 9f88575e8..b2c407903 100644 --- a/data/templates/default.docbook5 +++ b/data/templates/default.docbook5 @@ -1,14 +1,14 @@  <?xml version="1.0" encoding="utf-8" ?>  <!DOCTYPE article>  <article +$if(lang)$ +  xml:lang="$lang$" +$endif$    xmlns="http://docbook.org/ns/docbook" version="5.0"  $if(mathml)$    xmlns:mml="http://www.w3.org/1998/Math/MathML"  $endif$ -  xmlns:xlink="http://www.w3.org/1999/xlink" -$if(lang)$  -  xml:lang="$lang$" -$endif$ > +  xmlns:xlink="http://www.w3.org/1999/xlink" >    <info>      <title>$title$</title>  $if(subtitle)$ | 
