blob: 0104a08a8e54d678d77fed6c3b0f120a9a28489e (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
```
% pandoc -f latex -t native
foo \include{command/bar}
^D
[ Para [ Str "foo" ]
, Para [ Emph [ Str "hi" , Space , Str "there" ] ]
]
```
```
% pandoc -f latex -t native
foo \input{command/bar}
^D
[ Para
[ Str "foo"
, Space
, Emph [ Str "hi" , Space , Str "there" ]
]
]
```
|