aboutsummaryrefslogtreecommitdiff
path: root/test/command/5885.md
diff options
context:
space:
mode:
authorJohn MacFarlane <jgm@berkeley.edu>2019-11-07 23:08:05 -0800
committerJohn MacFarlane <jgm@berkeley.edu>2019-11-07 23:08:05 -0800
commit3bf53628984a91d9456d40b1202e9d15f1ad3088 (patch)
treea4a829aa509bcc8b25afbbe8117a82944dc60304 /test/command/5885.md
parentb44a4c803ef16fe13fcc886dc5da93999beb169e (diff)
downloadpandoc-3bf53628984a91d9456d40b1202e9d15f1ad3088.tar.gz
DocBook reader: Fix bug with entities in mathphrase element.
Closes #5885.
Diffstat (limited to 'test/command/5885.md')
-rw-r--r--test/command/5885.md20
1 files changed, 20 insertions, 0 deletions
diff --git a/test/command/5885.md b/test/command/5885.md
new file mode 100644
index 000000000..451929b5b
--- /dev/null
+++ b/test/command/5885.md
@@ -0,0 +1,20 @@
+```
+% pandoc -f docbook -t latex
+<equation>
+ <mathphrase>
+ J(x, y) = \left\{ \begin{array}{ll}
+ 0 &amp; \text{if $I(x, y) &lt; t$} \\
+ 1 &amp; \text{if $I(x, y) \ge t$}
+ \end{array}
+ \right.
+ </mathphrase>
+</equation>
+^D
+\[
+ J(x, y) = \left\{ \begin{array}{ll}
+ 0 & \text{if $I(x, y) < t$} \\
+ 1 & \text{if $I(x, y) \ge t$}
+ \end{array}
+ \right.
+ \]
+```