Sha256: c3b2e11fe48283d597058c732feb03e40cf1bc5879429113983e8b83ee730b4a

Contents?: true

Size: 1.3 KB

Versions: 7

Compression:

Stored size: 1.3 KB

Contents

format :html do
  view :open_content do |args|
    content = _render_core args
    table_of_contents(content) || content
  end

  def table_of_contents content
    return if @mode == :closed || !content.present?
    min = card.rule(:table_of_contents).to_i
    # warn "table_of #{name}, #{min}"
    return unless min && min > 0

    toc = []
    dep = 1
    content.gsub!(/<(h\d)>(.*?)<\/h\d>/i) do |match|
      if $LAST_MATCH_INFO
        tag, value = $LAST_MATCH_INFO[1, 2]
        value = ActionView::Base.new.strip_tags(value).strip
        next if value.empty?
        item = { value: value, uri: URI.escape(value) }
        case tag.downcase
        when 'h1'
          item[:depth] = dep = 1; toc << item
        when 'h2'
          toc << []  if dep == 1
          item[:depth] = dep = 2; toc.last << item
        end
        %(<a name="#{item[:uri]}"></a>#{match})
      end
    end

    if toc.flatten.length >= min
      content.replace %( <div class="table-of-contents"> <h5>Table of Contents</h5> ) +
                      make_table_of_contents_list(toc) + '</div>' + content
    end
  end

  def make_table_of_contents_list items
    list = items.map do |i|
      Array === i ? make_table_of_contents_list(i) : %(<li><a href="##{i[:uri]}"> #{i[:value]}</a></li>)
    end.join("\n")
    '<ol>' + list + '</ol>'
  end
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
card-1.18.6 mod/05_standard/set/type/basic.rb
card-1.18.5 mod/05_standard/set/type/basic.rb
card-1.18.4 mod/05_standard/set/type/basic.rb
card-1.18.3 mod/05_standard/set/type/basic.rb
card-1.18.2 mod/05_standard/set/type/basic.rb
card-1.18.1 mod/05_standard/set/type/basic.rb
card-1.18.0 mod/05_standard/set/type/basic.rb