aboutsummaryrefslogtreecommitdiff
path: root/test/command/4056.md
diff options
context:
space:
mode:
authorJohn MacFarlane <jgm@berkeley.edu>2017-11-12 14:46:29 -0800
committerJohn MacFarlane <jgm@berkeley.edu>2017-11-12 14:46:29 -0800
commiteeaa3b048c325859d049f1b7aa7f60553c897aa6 (patch)
treeefdc25f50e264c5325aad5ca1acc54f9ab25b6b6 /test/command/4056.md
parent7ba0ae8b4d9a6d3e7d4484a5f257e1e53f35667d (diff)
downloadpandoc-eeaa3b048c325859d049f1b7aa7f60553c897aa6.tar.gz
LaTeX reader: support column specs like `*{2}{r}`.
This is equivalent to `rr`. We now expand it like a macro. Closes #4056.
Diffstat (limited to 'test/command/4056.md')
-rw-r--r--test/command/4056.md15
1 files changed, 14 insertions, 1 deletions
diff --git a/test/command/4056.md b/test/command/4056.md
index be245a30d..eed4f6d6a 100644
--- a/test/command/4056.md
+++ b/test/command/4056.md
@@ -8,4 +8,17 @@
[RawBlock (Format "latex") "\\parbox[t]{0.4\\textwidth}{\n\\begin{shaded}\n\\end{shaded}\n}"]
```
-
+```
+% pandoc -f latex -t native
+\begin{tabular}{l*{2}{r}}
+Blah & Foo & Bar \\
+\end{tabular}
+^D
+[Table [] [AlignLeft,AlignRight,AlignRight] [0.0,0.0,0.0]
+ [[]
+ ,[]
+ ,[]]
+ [[[Plain [Str "Blah"]]
+ ,[Plain [Str "Foo"]]
+ ,[Plain [Str "Bar"]]]]]
+```