pandoc/test/command/4913.md

35 lines
649 B
Markdown
Raw Normal View History

```
% 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>
```