mirror of
https://github.com/netbox-community/netbox.git
synced 2024-05-10 07:54:54 +00: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
|
|
)
|