LoginSignup
5

More than 5 years have passed since last update.

Flask メモ

Posted at

unescape

pythonから表示したいのテキストにhtmlコードがあるとき、flaskが自動的に'<''&'などエスケープしたため、テキストは直接<span>みたいのように表す
Jinja2 から

  • the context dictionary by the application with MarkupSafe.Markup

  • the template, with the |safe filter

二つ方法解決


from flask import Markup
text = Markup('<span>hogehoge</span>')

もしくはテンプレートファイルに


       <div class="col-sm-10">
                   {{ text|safe }}
       </div>

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
5