mirror of
https://github.com/jgm/pandoc.git
synced 2026-09-03 06:05:45 +00:00
Previously we sometimes lost attributes when rendering links as autolinks. Closes #7692.
14 lines
242 B
Markdown
14 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>
|
|
```
|