hexojs / hexo-generator-feed

Feed generator for Hexo.

Home Page:http://hexo.io

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Config to turnoff excerpt in RSS?

aetherwu opened this issue · comments

Sometime I turn on excerpt for index/catalog page for readability, but still want full text output for RSS reader users.

Could you please add a rss config to output full-text in force?

I use excerpt cmd below:

<!-- more -->

Indeed, that seems like a good idea. No need to force the rss user to go to the site.
It should be fairly easy to implement
I'll do a PR if I have time

@aetherwu
The option already exists and its default value is true. Please check and try to enable content option like following.

feed:
    content: true
    ...

@yoshinorin I see. Thank you for notification!