文本处理常见问题

如何让文章列表全文显示?

一般在 index.jade 类似负责文章列表的模板文件内,能找到类似如下的代码

.post_content= post.content.opening or post.content.limit(300)
// 或者
.post_content= post.content.limit(300)

只要将limit去掉,剩下 post.content 就可以了。
比如上面的代码改为:

.post_content= post.content

但实际上,一般会改为,因为全文输出后,格式会更丰富一些,需要使用默认的 Markdown 的样式进行对应,或者自己重新修改具体的样式文件进行对应:

+h.load('markdown')
.post_content.markdown= post.content

注意: 以上不能一概而论,具体的问题具体分析,一般来说,就是文本内容不要使用 limit 函数,就可以了。

2017-06-16 21:54
Comments
Write a Comment