[Hexo] How to create rss service on hexo blog
因為平時有在訂閱RSS,所以想說是否在hexo上也可以提供RSS訂閱
於是找到了這款RSS插件
RSS設定配置
安裝插件
npm install --save hexo-generator-feed
配置_config.yml
# Extensions
plugins:
hexo-generator-feed
#Feed Atom
feed:
type: atom
path: atom.xml
limit: 20
# For aomori theme
aomori_social:
icon: logo-rss
type: logo
url: https://username.github.io/atom.xml
產生atom.xml
hexo g
成功的話就會看到public資料夾下多了一個atom.xml檔案