Sha256: ddd1c9f07741f673e22b2a2f6e9a3d6f027de17f22f2a281dd40b5e8bab6e90a
Contents?: true
Size: 1.99 KB
Versions: 1
Compression:
Stored size: 1.99 KB
Contents
# -*- encoding : utf-8 -*- class Card; module Set; class Abstract # Set: Abstract (TableOfContents) # module TableOfContents; extend Card::Set def self.source_location; "/Users/ezl5238/dev/decko/gem/mod/legacy/set/abstract/table_of_contents.rb"; end module HtmlFormat; module_parent.send :register_set_format, Card::Format::HtmlFormat, self; extend Card::Set::AbstractFormat view :open_content do with_table_of_contents _render_core end view :titled_content do with_table_of_contents _render_core end def with_table_of_contents content table_of_contents(content) || content end def table_of_contents content return if nest_mode == :compact || !content.present? || toc_minimum&.zero? toc = toc_items content return unless toc.flatten.length >= toc_minimum content.replace(%( <div class="table-of-contents"> <h5>#{t :legacy_toc}</h5> #{make_table_of_contents_list toc} </div>#{content} )) end def toc_minimum @toc_minimum ||= card.rule(:table_of_contents).to_i end def toc_items content toc = [] dep = 1 content.gsub!(%r{<(h\d)>(.*?)</h\d>}i) do |match| if $LAST_MATCH_INFO tag, value = $LAST_MATCH_INFO[1, 2] value = 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 toc end def make_table_of_contents_list items list = items.map do |i| if i.is_a?(Array) make_table_of_contents_list(i) else %(<li><a href="##{i[:uri]}"> #{i[:value]}</a></li>) end end.join("\n") "<ol>#{list}</ol>" end end end;end;end;end; # ~~ generated from /Users/ezl5238/dev/decko/gem/mod/legacy/set/abstract/table_of_contents.rb ~~
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
card-1.102.0 | tmpsets/set/mod032-legacy/abstract/table_of_contents.rb |