mirror of
https://github.com/netbox-community/netbox.git
synced 2025-07-22 03:56:53 -06:00
17 lines
458 B
Python
17 lines
458 B
Python
import markdown
|
|
from markdown.inlinepatterns import SimpleTagPattern
|
|
|
|
STRIKE_RE = r'(~{2})(.+?)(~{2})'
|
|
|
|
|
|
class StrikethroughExtension(markdown.Extension):
|
|
"""
|
|
A python-markdown extension which support strikethrough formatting (e.g. "~~text~~").
|
|
"""
|
|
def extendMarkdown(self, md):
|
|
md.inlinePatterns.register(
|
|
markdown.inlinepatterns.SimpleTagPattern(STRIKE_RE, 'del'),
|
|
'strikethrough',
|
|
200
|
|
)
|