pandoc/test/command/7692.md
John MacFarlane c19f063420 Markdown writer: don't create autolinks when this loses information.
Previously we sometimes lost attributes when rendering links as autolinks.

Closes #7692.
2021-11-15 11:06:50 -08:00

13 lines
242 B
Markdown

```
% pandoc -t markdown
[https://example.com](https://example.com){.clz}
^D
[https://example.com](https://example.com){.clz}
```
```
% pandoc -f markdown -t html | pandoc -f html -t markdown
<http://example.com>
^D
<http://example.com>
```