2014-11-02 4 views
5

: Benim index.html olarakjekyll'de, bir değişkeni olduğu gibi yazdırmak yerine bir işaretleme nasıl ayrıştırılır? Aşağıdaki dosya Verilen

- title: Slide one 
    desc: | 
    welcome to the slideshow 
    This is an open-source slideshow, built with [deck.js](https://github.com/imakewebthings/deck.js), GitHub and [Jekyll](http://jekyllrb.com). 

- title: Slide two 
    desc: | 
    Second slide with bullet points 
    * Hello world 
    * This is a slideshow 

içerir

_data 
    slides.yml 

Ben

{% for slide in site.data.slides %} 
    <section class="slide"> 
    <h2>{{ slide.title }}</h2> 
    {{ slide.desc }} 
    </section> 
{% endfor %} 

var nasıl Jekyll yorumlamak alabilirsiniz {{slide.desc} } işaretleme olarak? Bunun gibi bir şey var:

... 
{{ slide.desc AS markdown }} 
... 

Teşekkürler!

Albert

cevap