1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46
|
```
% pandoc -t native
\begin{tabular}{p{2in}}
\end{tabular}
# Test
\begin{tabular}{p{2\linewidth}}
\end{tabular}
^D
[ RawBlock
(Format "tex") "\\begin{tabular}{p{2in}}\n\\end{tabular}"
, Header 1 ( "test" , [] , [] ) [ Str "Test" ]
, RawBlock
(Format "tex")
"\\begin{tabular}{p{2\\linewidth}}\n\\end{tabular}"
]
```
```
% pandoc -f latex -t native
\begin{tabular}{p{2in}}
\end{tabular}
Test
\begin{tabular}{p{2\linewidth}}
\end{tabular}
^D
[ Table
( "" , [] , [] )
(Caption Nothing [])
[ ( AlignLeft , ColWidthDefault ) ]
(TableHead ( "" , [] , [] ) [])
[ TableBody ( "" , [] , [] ) (RowHeadColumns 0) [] [] ]
(TableFoot ( "" , [] , [] ) [])
, Para [ Str "Test" ]
, Table
( "" , [] , [] )
(Caption Nothing [])
[ ( AlignLeft , ColWidth 2.0 ) ]
(TableHead ( "" , [] , [] ) [])
[ TableBody ( "" , [] , [] ) (RowHeadColumns 0) [] [] ]
(TableFoot ( "" , [] , [] ) [])
]
```
|