johnxnguyen / Down

Blazing fast Markdown / CommonMark rendering in Swift, built upon cmark.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Is it possible to use superscripts or subscripts with this library? If so how? If not, we'd love the feature!

Ryanauger95 opened this issue · comments

Feature Request

Superscript / Subscript support, like Github's markdown, or even using inline HTML

Hi @Ryanauger95 , thanks for getting in touch. Unfortunately superscripts and subscripts are not part of the Commonmark specification.

It may be possible (I haven't tried it) to use inline html, but it only when using the DownView which uses a web view to render the content. However, if you rely on using the DownStyler it certainly won't work because this flavor or the markdown rendering doesn't support html parsing.

In terms of adding support for this, it's something that needs to be done in the cmark parser, which I don't intend to do here because Down is only a wrapper around cmark.

I hope this answers you questions.

@Ryanauger95 no problem, let me know if there's anything else I can help you with.