pagenation を無効化したい

Hexo の過去記事ページ (archives) やタグごとのページで pagenation (複数ページへの分割)をやめたい。

デフォルトでこの機能はあって、_config.yml で設定可能です。

アーカイブページの pagenation を無効化する

https://github.com/hexojs/hexo-generator-archive

archive_generator:
  per_page: 0
  yearly: true
  monthly: true
  daily: false

Tags ページの pagenation を無効化する

https://github.com/hexojs/hexo-generator-tag

tag_generator:
  per_page: 0

Previous: C# はじめました

Home

Next: Markdown の改行を無視してほしい