perf: ticket markdown (#9325)

Co-authored-by: feng <1304903146@qq.com>
This commit is contained in:
fit2bot
2023-01-16 20:40:38 +08:00
committed by GitHub
parent 56d533c802
commit 6a9f1978bb
2 changed files with 7 additions and 5 deletions

View File

@@ -1,4 +1,4 @@
from html import escape
import html2text
from django.utils.translation import ugettext as _
from django.template.loader import render_to_string
@@ -67,7 +67,7 @@ class BaseHandler:
if state != TicketState.approved:
return diff_context
if self.ticket.type == TicketType.apply_asset:
if self.ticket.type != TicketType.apply_asset:
return diff_context
# 企业微信钉钉审批不做diff
@@ -112,5 +112,4 @@ class BaseHandler:
@staticmethod
def safe_html_script(unsafe_html):
safe_html = escape(unsafe_html)
return safe_html
return html2text.html2text(unsafe_html)