尝试实现杰基尔幻灯片,但不确定语法

Trying to implement Jekyll Slideshow but unsure of syntax

本文关键字:不确定 语法 幻灯片 实现      更新时间:2023-09-26

我正在尝试实现 https://github.com/matthewowen/jekyll-slideshow,但是我不确定Matt在文档中说:

For any content that you'd like the slideshow process to work on, use the filter 'slideshows' in your template, like so:
{{ content | slideshows }}

我使用的是HTML而不是markdown。我的网页看起来像...

<ul>    
<li><img src="assets/images/77_xs650.JPG" alt="Example image" title="" /></li>
<li><img src="assets/images/650_chop.JPG" alt="Example image" title="" /></li>
<li><img src="assets/images/sr500.JPG" alt="Example image" title="" /></li>
<li><img src="assets/images/triumph.jpg" alt="Example image" title="" /></li>
</ul>

如何对此数据使用过滤器"幻灯片"?

在要使用的

模板中,将{{ content }}替换为{{ content | sideshows}}