mirror of
https://github.com/jgm/pandoc.git
synced 2026-09-01 21:25:48 +00:00
- Link text cannot contain formatting (e.g., `//` is not italics). Closes #9630. - An explicitly empty link text (`[[url|]]`) works the same as an omitted link text. Closes #9632.
13 lines
334 B
Markdown
13 lines
334 B
Markdown
```
|
|
% pandoc -f dokuwiki
|
|
* [[https://example.com|https://example.com]]
|
|
* [[https://example.com/start#monitoring|https://example.com/start#monitoring]]
|
|
^D
|
|
<ul>
|
|
<li><a href="https://example.com">https://example.com</a></li>
|
|
<li><a
|
|
href="https://example.com/start#monitoring">https://example.com/start#monitoring</a></li>
|
|
</ul>
|
|
|
|
```
|