PHP中文网2017-04-18 10:05:39
圖片不顯示是因為存在資料庫中的img沒有src屬性。你要告訴markdown你需要保留的屬性
@staticmethod
def on_changed_body(target, value, oldvalue, initiator):
allowed_tage = ['a', 'abbr', 'acronym', 'b', 'blockquote', 'code',
'em', 'i', 'li', 'ol', 'pre', 'strong', 'ul',
'h1', 'h2', 'h3', 'p', 'img']
attrs = {
'img': ['src', 'alt']
}
target.body_html = bleach.linkify(bleach.clean(markdown(value, output_format='html'), tags=allowed_tage, attributes=attrs, strip=True))