重複の可能性:Django:テンプレート変数をhtmlとしてレンダリング
Djangoサイトを開発していて、htmlタグを含む文字列変数があります。テンプレートでその文字列をhtmlコードとして読み取る必要があります。
たとえば、文字列変数がある場合
説明= "<ul><li>abc</li><li>def</li><li>ghi</li></ul> "
<ul><li>abc</li><li>def</li><li>ghi</li></ul>
テンプレートでこの文字列変数を呼び出すと、次のように表示されます。
現在、文字列をそのまま表示しています。
私はこれで本当に助けていただければ幸いです。
{{ description | safe }}
https://docs.djangoproject.com/en/dev/ref/templates/builtins/?from=olddocs#safe
もっと
https://docs.djangoproject.com/en/dev/topics/templates/#automatic-html-escaping