diff options
author | John MacFarlane <jgm@berkeley.edu> | 2015-04-12 21:22:38 -0700 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2015-04-12 21:22:38 -0700 |
commit | 09767991b2a8945f5739d47c44d171e37e65e0de (patch) | |
tree | bd15ff79a11a458b117801d931bf9bfba1a3651a | |
parent | 7846f08b61167b0364722d440e06a432ade85303 (diff) | |
download | pandoc-09767991b2a8945f5739d47c44d171e37e65e0de.tar.gz |
OpenDocument: use text:p instead of text:h for title.
Using text:h causes problems with numbering.
See jgm/pandoc#2059.
-rw-r--r-- | default.opendocument | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/default.opendocument b/default.opendocument index afed83b76..6a0e11ea1 100644 --- a/default.opendocument +++ b/default.opendocument @@ -10,7 +10,7 @@ $endfor$ <office:body> <office:text> $if(title)$ -<text:h text:style-name="Title">$title$</text:h> +<text:p text:style-name="Title">$title$</text:p> $endif$ $for(author)$ <text:p text:style-name="Author">$author$</text:p> |