LaTeX reader: handle escaped & inside table cell.

Closes #3708.
This commit is contained in:
John MacFarlane
2017-05-29 22:47:04 +02:00
parent 230a1b89e8
commit 5ec384eb60
2 changed files with 20 additions and 3 deletions
+15
View File
@@ -0,0 +1,15 @@
```
% pandoc -f latex -t native
\begin{tabular}{cc}
A & B\&1 \\
C & D
\end{tabular}
^D
[Table [] [AlignCenter,AlignCenter] [0.0,0.0]
[[]
,[]]
[[[Plain [Str "A"]]
,[Plain [Str "B&1"]]]
,[[Plain [Str "C"]]
,[Plain [Str "D"]]]]]
```