aboutsummaryrefslogtreecommitdiff
path: root/test/command/6324.md
diff options
context:
space:
mode:
authorJohn MacFarlane <jgm@berkeley.edu>2020-10-10 16:28:52 -0700
committerJohn MacFarlane <jgm@berkeley.edu>2020-10-10 16:28:52 -0700
commit0b5e2601f5700522e392400eee992938c086ef7a (patch)
tree1508ed2466946f095c7ad269595cdc0cb689e809 /test/command/6324.md
parent9ecf6a2d19741e5dc631ee280d291b29883f67f7 (diff)
downloadpandoc-0b5e2601f5700522e392400eee992938c086ef7a.tar.gz
LaTeX reader: allow blank lines inside `\author`.
Diffstat (limited to 'test/command/6324.md')
-rw-r--r--test/command/6324.md17
1 files changed, 17 insertions, 0 deletions
diff --git a/test/command/6324.md b/test/command/6324.md
new file mode 100644
index 000000000..0fe57ce65
--- /dev/null
+++ b/test/command/6324.md
@@ -0,0 +1,17 @@
+```
+% pandoc -f latex -t native -s
+\documentclass{article}
+
+\begin{document}
+ \title{Document title}
+ \author{
+
+Me
+
+}
+\maketitle
+\end{document}
+^D
+Pandoc (Meta {unMeta = fromList [("author",MetaList [MetaInlines [Str "Me"]]),("title",MetaInlines [Str "Document",Space,Str "title"])]})
+[]
+```