mirror of
https://github.com/netbox-community/netbox.git
synced 2024-05-10 07:54:54 +00:00
Closes #7531: Add Markdown support for strikethrough formatting
This commit is contained in:
16
netbox/utilities/markdown.py
Normal file
16
netbox/utilities/markdown.py
Normal file
@@ -0,0 +1,16 @@
|
||||
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
|
||||
)
|
Reference in New Issue
Block a user