Sha256: f9756246acb0ad778d9713af3bd5f4cb5cdbe273b2e45068e5f68b557770536c

Contents?: true

Size: 1.63 KB

Versions: 3

Compression:

Stored size: 1.63 KB

Contents

# -*- encoding : utf-8 -*-
class Card; module Set; module Type; module Basic; extend Card::Set # ~~~~~~~~~~~ above autogenerated; below pulled from /Users/ethan/dev/wagn/gem/card/mod/05_standard/set/type/basic.rb ~~~~~~~~~~~
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 and min > 0

    toc, dep = [], 1
    content.gsub!( /<(h\d)>(.*?)<\/h\d>/i ) do |match|
      if $~
        tag, value = $~[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.collect 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



# ~~~~~~~~~~~ below autogenerated; above pulled from /Users/ethan/dev/wagn/gem/card/mod/05_standard/set/type/basic.rb ~~~~~~~~~~~
end;end;end;end;

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
card-1.16.9 tmpsets/set/mod007-05_standard/type/basic.rb
card-1.16.8 tmpsets/set/mod007-05_standard/type/basic.rb
card-1.16.7 tmpsets/set/mod007-05_standard/type/basic.rb