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