私はsafe
フィルターを使用しており、タグ内にある HTML タグのみにエスケープしたい<code></code>
、つまりHello<b>Hello</b>
としてレンダリングされますが、 としてレンダリングされます。したがって、カスタムフィルターを作成しますが、次のエラーが発生します:<code><b>Hello</b></code>
<b>Hello</b>
Exception Type: AttributeError
Exception Value:'ResultSet' object has no attribute 'replace'
Exception Location: G:\python\Python\python practice\python website\firstpage\custom_filters\templatetags\custom_filters.py in code_escape, line 10
私のコードは次のとおりです。
from bs4 import BeautifulSoup
from django import template
register = template.Library()
@register.filter
def code_escape(value):
soup = BeautifulSoup(value)
response = soup.find_all('code')
string = response.replace('<', '<')
string = string.replace('>', '>')
string = string.replace("'", ''')
string = string.replace('"', '"')
final_string = string.replace('&', '&')
return final_string
template.html
.......
{% load sanitizer %}
{% load custom_filters %}
......
{{ content|escape_html|safe|linebreaks|code_escape }}
.......