showdownjs / showdown

A bidirectional Markdown to HTML to Markdown converter written in Javascript
http://www.showdownjs.com/
MIT License
14.19k stars 1.56k forks source link

How to style footnotes differently than links? #926

Open harkairt opened 2 years ago

harkairt commented 2 years ago

I see both links and footnotes are an a href inside the p with the same values.

<a href="https://www.google.com" rel="noopener noreferrer" target="_blank">^3</a>
<a href="https://www.google.com" rel="noopener noreferrer" target="_blank">link</a>

I'd like to format footnotes to look like a footnote (be superscript where it is referenced), but how do I differentiate?

Thanks