MarkdownLivePreview
MarkdownLivePreview copied to clipboard
Support for super and subscript? +1
In this gist one can see that GitHub's implementation of Markdown supports super and subscript through the <sub> and <sup> tags, but these don't seem to do anything in MarkdownLivePreview.
It would also be convenient if there were footnote support. References are already supported so I don't see why not this.
If anyone wants to help resolve this issue, some testing reveals that minihtml can support super and subscripts with some simple styling:
Non-superscript text. <span style="font-size:.75rem;position:relative;bottom:0.5em">Superscript text.</span>
Non-subscript text. <span style="font-size:.75rem;position:relative;top:0.5em">Subscript text.</span>
Feel free to submit a PR if you want to this happen, I won't take the time to work on it.