You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
My original docstring stated that superscripted text cannot contain any
whitespace characters. In fact, superscripted text can contain space
characters, as long as they are escaped.
Copy file name to clipboardExpand all lines: mdit_py_plugins/superscript/index.py
+9-4Lines changed: 9 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -37,9 +37,14 @@
37
37
defsuperscript_plugin(md: MarkdownIt) ->None:
38
38
"""Superscript (``<sup>``) tag plugin for Markdown-It-Py.
39
39
40
-
This plugin is ported from `markdown-it-sup <https://github.com/markdown-it/markdown-it-sup>`_. Markup is based on the `Pandoc superscript extension <https://pandoc.org/MANUAL.html#superscripts-and-subscripts>`_.
40
+
This plugin is ported from `markdown-it-sup
41
+
<https://github.com/markdown-it/markdown-it-sup>`_. Markup is based on the
0 commit comments