2016-09-20 49 views

回答

0

一種方法是讓你細分你的內容。

 

    // YAML 
    title: 
     highlighted: "Hello" 
     body: " World" 

    // JINJA template 
    {{ highlighted + body }} 

另一種方法是讓你使用過濾器購買html標籤。你可以在這裏瞭解更多: http://jinja.pocoo.org/docs/dev/templates/#working-with-manual-escaping

 

    // Yaml file 
    title: 
    "Hello World" 

    // Jinja template 
    {{ title|e }} 

0

斜體是不相關的Jinja2的,但你的HTML代碼。

你可以附上{{ title }}

<i>{{ title }}</i> 

但即使是更好的,你應該使用CSS來格式化輸出。

相關問題