解决方法
通过功能
here,我找到strip_html和truncatewords。
这里有一个样例“帖子列表”与75字的预览文本。
<ul > {% for post in site.posts limit 4 %} <li><span>{{ post.date | date_to_string }}</span> » <a href="{{ BASE_PATH }}{{ post.url }}">{{ post.title }}</a></li> {{ post.content | strip_html | truncatewords:75}}<br> <a href="{{ post.url }}">Read more...</a><br><br> {% endfor %} </ul>