Add the :del: text role

It will be displayed as a `<del>` tag in HTML.
This commit is contained in:
Gergely Polonkai 2021-02-15 15:50:02 +01:00
parent c53ba939c6
commit 434a0062f3
No known key found for this signature in database
GPG Key ID: 2D2885533B869ED4
1 changed files with 5 additions and 0 deletions

View File

@ -10,9 +10,14 @@ def superscript_role(name, rawtext, text, lineno, inliner, options=None, content
return [nodes.raw('', f'<sup>{text}</sup>', format='html')], []
def del_role(name, rawtext, text, lineno, inliner, options=None, content=None):
return [nodes.raw('', f'<del>{text}</del>', format='html')], []
def register_roles():
rst.roles.register_local_role('kbd', keyboard_role)
rst.roles.register_local_role('sup', superscript_role)
rst.roles.register_local_role('del', del_role)
def register():