aboutsummaryrefslogtreecommitdiff
path: root/test/command/4913.md
blob: 6492b80ce8945e744de8fde272e8cc79c51e3bbd (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
32
33
34
```
% pandoc -f markdown -t html
[https://pandoc.org](https://pandoc.org)
^D
<p><a href="https://pandoc.org">https://pandoc.org</a></p>
```

```
% pandoc -f markdown -t markdown
[https://pandoc.org](https://pandoc.org)
^D
<https://pandoc.org>
```

```
% pandoc -f markdown -t html
<https://pandoc.org>
^D
<p><a href="https://pandoc.org" class="uri">https://pandoc.org</a></p>
```

```
% pandoc -f markdown -t html
<https://pandoc.org>{.foo}
^D
<p><a href="https://pandoc.org" class="foo">https://pandoc.org</a></p>
```

```
% pandoc -f markdown -t html
<me@example.com>
^D
<p><a href="mailto:me@example.com" class="email">me@example.com</a></p>
```