1
0
mirror of https://github.com/netbox-community/netbox.git synced 2024-05-10 07:54:54 +00:00

Closes #9221: Add definition list support for Markdown

This commit is contained in:
jeremystretch
2022-05-12 11:05:34 -04:00
parent 37903776fd
commit ad12ad4a77
2 changed files with 2 additions and 1 deletions

View File

@@ -158,7 +158,7 @@ def render_markdown(value):
value = re.sub(pattern, '[\\1]: \\3', value, flags=re.IGNORECASE)
# Render Markdown
html = markdown(value, extensions=['fenced_code', 'tables', StrikethroughExtension()])
html = markdown(value, extensions=['def_list', 'fenced_code', 'tables', StrikethroughExtension()])
# If the string is not empty wrap it in rendered-markdown to style tables
if html: