我在一个应用程序中使用 Flask 来呈现来自 sqlite 数据库的一些数据。我的问题是当应用程序呈现一些内部包含 html 的文本时,显示为文本而不是 html。例如,数据库中的记录有以下文本:
My tailor <strong>is</strong> rich
html页面按原样呈现:
<html>
<!-- snip .... -->
My tailor >strong<is>/strong< rich
<!-- snip .... -->
</html>
而且,我想要的是这个(“是”字必须更大胆):
<html>
<!-- snip .... -->
My tailor <strong>is</strong> rich
<!-- snip .... -->
</html>
有人知道我该怎么做吗?