mirror of
https://github.com/django-helpdesk/django-helpdesk.git
synced 2025-08-14 01:58:28 +02:00
EscapeHtml.extendMarkdown disabled
Updated markdown caused failures. Not sure what is going on with this class, 0 comments :-( If someone could give me a hint as to what this is trying to achieve, I can investigate further
This commit is contained in:
@ -50,9 +50,10 @@ def format_time_spent(time_spent):
|
||||
|
||||
|
||||
class EscapeHtml(Extension):
|
||||
def extendMarkdown(self, md, md_globals):
|
||||
del md.preprocessors['html_block']
|
||||
del md.inlinePatterns['html']
|
||||
def extendMarkdown(self, md, md_globals=None):
|
||||
# del md.preprocessors['html_block']
|
||||
# del md.inlinePatterns['html']
|
||||
pass
|
||||
|
||||
|
||||
def get_markdown(text):
|
||||
|
Reference in New Issue
Block a user