Plugin to support superscript.
import MarkdownIt from "markdown-it"; import { sup } from "@mdit/plugin-sup"; const mdIt = MarkdownIt().use(sup); mdIt.render("19^th^");
Use ^ ^ to mark the superscript.
^ ^
Escaping
You can use \ to escape ^:
\
^
19\^th^
will be
19^th^
19^th^: 19th