File: 9579.md

package info (click to toggle)
haskell-pandoc 3.7.0.2-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 24,532 kB
  • sloc: haskell: 86,819; xml: 4,325; makefile: 3
file content (46 lines) | stat: -rw-r--r-- 935 bytes parent folder | download
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 ( "" , [] , [] ) [])
]
```