jekyll-toc

A GitHub Pages compatible Table of Contents generator without a plugin or JavaScript :octocat:

Github星跟踪图

Jekyll Pure Liquid Table of Contents

Build Status
Latest release
ko-fi
Buy me a coffee

GitHub Pages can't run custom Jekyll plug-ins so when generating Tables of Contents (TOCs), you're stuck with either a JavaScript solution or using kramdown's {:toc} option. However, by using {:toc}, you are forced to have that code next to your actual markdown and you can't place it in a layout. This means every. single. post. will need to have the snippet. If you choose the JavaScript approach, that's perfectly fine but what if JS is disabled on the someone's browser or your page is just really long and it becomes inefficient.

Instead, I wrote this solution entirely in Liquid and can be used as an {% include %} in any website you want, in any layout you want. Want to see it in action? Here are some awesome websites that I know of using this solution :heart:.

For more information regarding how this include works, read the blog post.

Want anchors next to your Jekyll headings without JavaScript or a plug-in?

Check out the sister project over at allejo/jekyll-anchor-headings.

Usage

Alright, so how do you use it?

  1. Download the latest toc.html file

  2. Toss that file in your _includes folder.

  3. Use it in your template layout where you have {{ content }} which is the HTML rendered from the markdown source with this liquid tag:

    {% include toc.html html=content %}
    

Parameters

This snippet is highly customizable. Here are the available parameters to change the behavior of the snippet., Parameter, Type, Default, Description, --------------, :----:, :-----:, -----------, html, string, , the HTML of compiled markdown generated by kramdown in Jekyll, sanitize, bool, false, when set to true, the headers will be stripped of any HTML in the TOC, class, string, '', a CSS class assigned to the TOC; concat multiple classes with '.', id, string, '', an ID to be assigned to the TOC, h_min, int, 1, the minimum TOC header level to use; any heading lower than this value will be ignored, h_max, int, 6, the maximum TOC header level to use; any heading greater than this value will be ignored, ordered, bool, false, when set to true, an ordered list will be outputted instead of an unordered list, item_class, string, '', add custom class for each list item; has support for %level% placeholder, which is the current heading level, baseurl, string, '', add a base url to the TOC links for when your TOC is on another page than the actual content, anchor_class, string, '', add custom class(es) for each anchor element, This is a required parameter

Performance

The performance impact of this snippet on your site is pretty negligible. The stats below were gotten from Jekyll's --profile option.

Filename, Count, Bytes, Time
--------------------------------------+-------+------------+--------

# performance on docs.docker.com from ~Feb 2017
_includes/toc.html, 813, 524.17K, 6.422

# performance on the "Minimal Mistakes" Jekyll theme
_includes/toc.html, 94, 29.43K, 0.413

License

This snippet may be redistributed under either the BSD-3 or MIT licenses.

主要指标

概览
名称与所有者allejo/jekyll-toc
主编程语言Liquid
编程语言Ruby (语言数: 2)
平台
许可证
所有者活动
创建于2017-09-07 05:44:41
推送于2024-01-15 23:43:51
最后一次提交2024-01-15 15:41:28
发布数18
最新版本名称v1.2.1 (发布于 )
第一版名称v1.0.0 (发布于 )
用户参与
星数506
关注者数11
派生数130
提交数118
已启用问题?
问题数31
打开的问题数0
拉请求数21
打开的拉请求数0
关闭的拉请求数4
项目设置
已启用Wiki?
已存档?
是复刻?
已锁定?
是镜像?
是私有?