aboutsummaryrefslogtreecommitdiff
path: root/test/command/figures-textile.md
blob: 27c60cbe866f2d94fa62461325db72550ab79286 (plain)
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
```
% pandoc -f native -t textile
[Figure ("fig-id",[],[]) (Caption Nothing [Para [Str "Caption"]]) [Para [Image ("",[],[]) [] ("foo.png", "")]]]

^D
<figure id="fig-id">

<figcaption>

Caption

</figcaption>

!foo.png!


</figure>
```

```
% pandoc -f native -t textile
[Figure ("fig-id",[],[]) (Caption Nothing []) [Para [Image ("",[],[]) [] ("foo.png", "")]]]

^D
<figure id="fig-id">

!foo.png!


</figure>
```