14 lines
611 B
Markdown
14 lines
611 B
Markdown
```
|
|
% pandoc -f html -t latex --wrap=preserve
|
|
<a href="https://example.com/foo-bar">https://example.com/foo-bar</a>
|
|
<a href="https://example.com/foo--bar">https://example.com/foo--bar</a>
|
|
<a href="https://example.com/foo%2Dbar">https://example.com/foo-bar</a>
|
|
<a href="https://example.com/foo%2D%2Dbar">https://example.com/foo--bar</a>
|
|
<a href="https://example.com/foo%2D%2Dbar">https://example.com/foo%2D%2Dbar</a>
|
|
^D
|
|
\url{https://example.com/foo-bar}
|
|
\url{https://example.com/foo--bar}
|
|
\url{https://example.com/foo\%2Dbar}
|
|
\url{https://example.com/foo\%2D\%2Dbar}
|
|
\url{https://example.com/foo\%2D\%2Dbar}
|
|
```
|