Sha256: bd3f6d94b1433d260319853b67ccfa550e271ad2f7796d68150814374c6be725

Contents?: true

Size: 1.08 KB

Versions: 2

Compression:

Stored size: 1.08 KB

Contents

require 'nokogiri'
require 'table_of_contents/parser'

module Jekyll
  class TocTag < Liquid::Tag
    def render(context)
      return unless context.registers[:page]['toc'] == true
      content_html = context.registers[:page].content
      ::Jekyll::TableOfContents::Parser.new(content_html).build_toc
    end
  end

  module TableOfContentsFilter
    def toc_only(html)
      return html unless toc_enabled?
      ::Jekyll::TableOfContents::Parser.new(html, toc_config).build_toc
    end

    def inject_anchors(html)
      return html unless toc_enabled?
      ::Jekyll::TableOfContents::Parser.new(html, toc_config).inject_anchors_into_html
    end

    def toc(html)
      return html unless toc_enabled?
      ::Jekyll::TableOfContents::Parser.new(html, toc_config).toc
    end

    private

    def toc_enabled?
      @context.registers[:page]['toc'] == true
    end

    def toc_config
      @context.registers[:site].config["toc"]
    end
  end
end

Liquid::Template.register_filter(Jekyll::TableOfContentsFilter)
# Liquid::Template.register_tag('toc', Jekyll::TocTag) # will be enabled at v1.0

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
jekyll-toc-0.5.0 lib/jekyll-toc.rb
jekyll-toc-0.5.0.rc lib/jekyll-toc.rb