summaryrefslogtreecommitdiff
path: root/strikethrough.py
diff options
context:
space:
mode:
Diffstat (limited to 'strikethrough.py')
-rw-r--r--strikethrough.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/strikethrough.py b/strikethrough.py
index d0342fc..9272898 100644
--- a/strikethrough.py
+++ b/strikethrough.py
@@ -8,17 +8,17 @@ from marko import inline
from marko.helpers import MarkoExtension
-class StrikeThrough(inline.InlineElement):
+class StrikeThroughElement(inline.InlineElement):
pattern = '~~(.+)~~'
parse_children = True
class StrikeThroughRenderer:
- def render_strike_through(self, element):
+ def render_strike_through_element(self, element):
return f"<del>{self.render_children(element)}</del>"
StrikeThrough = MarkoExtension(
- elements=[StrikeThrough],
+ elements=[StrikeThroughElement],
renderer_mixins=[StrikeThroughRenderer]
)