feat: implement subscript and superscript parsers

This commit is contained in:
Steven
2024-01-19 23:06:22 +08:00
parent 1f5899d238
commit 7236552b6c
8 changed files with 235 additions and 0 deletions

View File

@ -83,6 +83,8 @@ var defaultInlineParsers = []InlineParser{
NewItalicParser(),
NewHighlightParser(),
NewCodeParser(),
NewSubscriptParser(),
NewSuperscriptParser(),
NewMathParser(),
NewTagParser(),
NewStrikethroughParser(),