Grav: Markdown syntax for superscript and subscript

Created on 2 Oct 2017  路  2Comments  路  Source: getgrav/grav

Does Grav possess any markdown syntax for superscript and subscript? I didn't find anything in Grav markdown syntax doc.
In case it's not available till now, is there any plan to add this support ?

Most helpful comment

We're using parsedown which provides the GFM variety of markdown, which does not currently support this... However it's easy to just mix in some HTML:

This is some <sup>superscript</sup> text.

This is some <sub>subscript</sub> text.

This is some superscript text.

This is some subscript text.

All 2 comments

We're using parsedown which provides the GFM variety of markdown, which does not currently support this... However it's easy to just mix in some HTML:

This is some <sup>superscript</sup> text.

This is some <sub>subscript</sub> text.

This is some superscript text.

This is some subscript text.

How about Grav adopts markdown syntax like Beegit markdown syntax.
https://beegit.com/markdown-cheat-sheet

Was this page helpful?
0 / 5 - 0 ratings