Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
値が html の変数があります。
c.url = '<a href=""></a>'
これを mako テンプレートに表示すると、出力は次のようになります。
<a href=""></a>
どうしたの?
ありがとう。
安全に表示できるように、変数のコンテンツがフィルター処理されています。markupsafe.escape()その上で実行されています。
markupsafe.escape()