Files
pandoc/test/command/wikilinks_title_after_pipe.md
T
Evan Silberman 97b36ecb77 Track wikilinks with a class instead of a title
Once upon a time the only metadata element for links in Pandoc's AST was
a title, and it was hijacked to track certain links as having originated
in the wikilink syntax. Now we have Attrs and we can use a class to
handle wikilinks instead.

Requires coordinated changes to commonmark-hs.
2025-02-07 14:04:12 -08:00

1.7 KiB

CommonMark

Reader

% pandoc --from commonmark_x+wikilinks_title_after_pipe -t html --columns 90
[[https://example.org]]

[[https://example.org|title]]

[[name of page]]

[[name of page|title]]
^D
<p><a href="https://example.org" class="wikilink">https://example.org</a></p>
<p><a href="https://example.org" class="wikilink">title</a></p>
<p><a href="name of page" class="wikilink">name of page</a></p>
<p><a href="name of page" class="wikilink">title</a></p>

Writer

% pandoc -t commonmark_x+wikilinks_title_after_pipe -f html
<p><a href="https://example.org" class="wikilink">https://example.org</a></p>
<p><a href="https://example.org" class="wikilink">title</a></p>
<p><a href="Home" class="wikilink">Home</a></p>
<p><a href="Name of page" class="wikilink">Title</a></p>
^D
[[https://example.org]]

[[https://example.org|title]]

[[Home]]

[[Name%20of%20page|Title]]

Markdown

Reader

% pandoc --from markdown+wikilinks_title_after_pipe -t html --columns 90
[[https://example.org]]

[[https://example.org|title]]

[[name of page]]

[[name of page|title]]
^D
<p><a href="https://example.org" class="wikilink">https://example.org</a></p>
<p><a href="https://example.org" class="wikilink">title</a></p>
<p><a href="name of page" class="wikilink">name of page</a></p>
<p><a href="name of page" class="wikilink">title</a></p>

Writer

% pandoc -t markdown+wikilinks_title_after_pipe -f html
<p><a href="https://example.org" class="wikilink">https://example.org</a></p>
<p><a href="https://example.org" class="wikilink">title</a></p>
<p><a href="Home" class="wikilink">Home</a></p>
<p><a href="Name of page" class="wikilink">Title</a></p>
^D
[[https://example.org]]

[[https://example.org|title]]

[[Home]]

[[Name%20of%20page|Title]]