├── .github ├── dependabot.yml └── workflows │ ├── ci.yml │ ├── coverage.yml │ └── rubocop.yml ├── .gitignore ├── .rubocop.yml ├── Appraisals ├── CHANGELOG.md ├── Gemfile ├── LICENSE.md ├── README.md ├── Rakefile ├── gemfiles ├── jekyll_3.9.gemfile ├── jekyll_4.0.gemfile ├── jekyll_4.1.gemfile ├── jekyll_4.2.gemfile └── jekyll_4.3.gemfile ├── jekyll-toc.gemspec ├── lib ├── jekyll-toc.rb └── table_of_contents │ ├── configuration.rb │ ├── helper.rb │ ├── parser.rb │ └── version.rb └── test ├── parser ├── test_inject_anchors_filter.rb ├── test_invalid_options.rb ├── test_ordered_list.rb ├── test_toc_filter.rb ├── test_toc_only_filter.rb └── test_various_toc_html.rb ├── test_configuration.rb ├── test_helper.rb ├── test_jekyll-toc.rb ├── test_kramdown_list.rb └── test_toc_tag.rb /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toshimaru/jekyll-toc/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toshimaru/jekyll-toc/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/coverage.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toshimaru/jekyll-toc/HEAD/.github/workflows/coverage.yml -------------------------------------------------------------------------------- /.github/workflows/rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toshimaru/jekyll-toc/HEAD/.github/workflows/rubocop.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toshimaru/jekyll-toc/HEAD/.gitignore -------------------------------------------------------------------------------- /.rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toshimaru/jekyll-toc/HEAD/.rubocop.yml -------------------------------------------------------------------------------- /Appraisals: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toshimaru/jekyll-toc/HEAD/Appraisals -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toshimaru/jekyll-toc/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toshimaru/jekyll-toc/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toshimaru/jekyll-toc/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toshimaru/jekyll-toc/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toshimaru/jekyll-toc/HEAD/Rakefile -------------------------------------------------------------------------------- /gemfiles/jekyll_3.9.gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toshimaru/jekyll-toc/HEAD/gemfiles/jekyll_3.9.gemfile -------------------------------------------------------------------------------- /gemfiles/jekyll_4.0.gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toshimaru/jekyll-toc/HEAD/gemfiles/jekyll_4.0.gemfile -------------------------------------------------------------------------------- /gemfiles/jekyll_4.1.gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toshimaru/jekyll-toc/HEAD/gemfiles/jekyll_4.1.gemfile -------------------------------------------------------------------------------- /gemfiles/jekyll_4.2.gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toshimaru/jekyll-toc/HEAD/gemfiles/jekyll_4.2.gemfile -------------------------------------------------------------------------------- /gemfiles/jekyll_4.3.gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toshimaru/jekyll-toc/HEAD/gemfiles/jekyll_4.3.gemfile -------------------------------------------------------------------------------- /jekyll-toc.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toshimaru/jekyll-toc/HEAD/jekyll-toc.gemspec -------------------------------------------------------------------------------- /lib/jekyll-toc.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toshimaru/jekyll-toc/HEAD/lib/jekyll-toc.rb -------------------------------------------------------------------------------- /lib/table_of_contents/configuration.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toshimaru/jekyll-toc/HEAD/lib/table_of_contents/configuration.rb -------------------------------------------------------------------------------- /lib/table_of_contents/helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toshimaru/jekyll-toc/HEAD/lib/table_of_contents/helper.rb -------------------------------------------------------------------------------- /lib/table_of_contents/parser.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toshimaru/jekyll-toc/HEAD/lib/table_of_contents/parser.rb -------------------------------------------------------------------------------- /lib/table_of_contents/version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toshimaru/jekyll-toc/HEAD/lib/table_of_contents/version.rb -------------------------------------------------------------------------------- /test/parser/test_inject_anchors_filter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toshimaru/jekyll-toc/HEAD/test/parser/test_inject_anchors_filter.rb -------------------------------------------------------------------------------- /test/parser/test_invalid_options.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toshimaru/jekyll-toc/HEAD/test/parser/test_invalid_options.rb -------------------------------------------------------------------------------- /test/parser/test_ordered_list.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toshimaru/jekyll-toc/HEAD/test/parser/test_ordered_list.rb -------------------------------------------------------------------------------- /test/parser/test_toc_filter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toshimaru/jekyll-toc/HEAD/test/parser/test_toc_filter.rb -------------------------------------------------------------------------------- /test/parser/test_toc_only_filter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toshimaru/jekyll-toc/HEAD/test/parser/test_toc_only_filter.rb -------------------------------------------------------------------------------- /test/parser/test_various_toc_html.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toshimaru/jekyll-toc/HEAD/test/parser/test_various_toc_html.rb -------------------------------------------------------------------------------- /test/test_configuration.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toshimaru/jekyll-toc/HEAD/test/test_configuration.rb -------------------------------------------------------------------------------- /test/test_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toshimaru/jekyll-toc/HEAD/test/test_helper.rb -------------------------------------------------------------------------------- /test/test_jekyll-toc.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toshimaru/jekyll-toc/HEAD/test/test_jekyll-toc.rb -------------------------------------------------------------------------------- /test/test_kramdown_list.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toshimaru/jekyll-toc/HEAD/test/test_kramdown_list.rb -------------------------------------------------------------------------------- /test/test_toc_tag.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toshimaru/jekyll-toc/HEAD/test/test_toc_tag.rb --------------------------------------------------------------------------------