mirror of
https://github.com/jgm/pandoc.git
synced 2026-08-28 17:20:47 +08:00
97b36ecb77
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.
1.7 KiB
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]]