You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Lorem ipsum dolor sit amet, consectetur [^\[link\]^](#ref "Title")
adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore
magna aliqua.
Using the following command:
pandoc -f markdown -t html "markdown.md" -o "output.html";
The result was:
<p>Lorem ipsum dolor sit amet, consectetur [^\[link\]^](#ref “Title”)
adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore
magna aliqua.</p>
While, when I put ^ outside the link, it works properly:
<p>Lorem ipsum dolor sit amet, consectetur <sup><ahref="#ref"
title="Title">[link]</a></sup> adipiscing elit, sed do eiusmod tempor
incididunt ut labore et dolore magna aliqua.</p>
Seems like:
When a link contains a subscript: 🗷
When a subscript contains a link: 🗹
The text was updated successfully, but these errors were encountered:
Pandoc version: 3.1.6
I'm trying to convert a markdown file to HTML.
The markdown file looks like this:
Using the following command:
The result was:
While, when I put
^
outside the link, it works properly:Seems like:
The text was updated successfully, but these errors were encountered: