# HG changeset patch # User RhodeCode Admin # Date 2023-03-06 22:20:12 # Node ID f4b424069635bc9d7da97c2459313d4517a8dc7c # Parent 905a9fec383cf632f3624ca84f16e3e4c56067e9 markdown: remove smart_strong as it's a default behaviour now diff --git a/rhodecode/lib/markdown_ext.py b/rhodecode/lib/markdown_ext.py --- a/rhodecode/lib/markdown_ext.py +++ b/rhodecode/lib/markdown_ext.py @@ -24,7 +24,6 @@ import xml.etree.ElementTree as etree from markdown.extensions import Extension from markdown.extensions.fenced_code import FencedCodeExtension -from markdown.extensions.smart_strong import SmartEmphasisExtension from markdown.extensions.tables import TableExtension from markdown.inlinepatterns import Pattern @@ -121,7 +120,6 @@ class GithubFlavoredMarkdownExtension(Ex # Built-in extensions Nl2BrExtension().extendMarkdown(md, md_globals) FencedCodeExtension().extendMarkdown(md, md_globals) - SmartEmphasisExtension().extendMarkdown(md, md_globals) TableExtension().extendMarkdown(md, md_globals) # Custom extensions