我正试图想出一种方法来使用jinja来逃避某个css类。示例:
<div class="code"> <center> ... more example html code ... </center> </div>
其中
<center>
标签明显写在帖子中。同样,我只想让代码类逃脱。任何提示?
答案 0 :(得分:1)
如果您只想转义类代码,那么您需要将其作为单独的变量传递,如下所示:
{{ classcode|e }}{{ Your other unescaped code here }}
我希望这会对你有所帮助。