blob: c9e9a2971b00777dd6c731349deab5c7f9c02c0b (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
```
pandoc -t asciidoc
[foo *bar*]{.small .red key=val}
^D
[.small .red]#foo _bar_#
```
```
pandoc -f html -t asciidoc
<small>SMALL</small>
^D
[.small]#SMALL#
```
|