Sha256: a47c1771c9fe1efb7730b602af1947d82d1895bfec99e2ad8241dc49dcdc501b
Contents?: true
Size: 1.92 KB
Versions: 9
Compression:
Stored size: 1.92 KB
Contents
# -*- encoding : utf-8 -*- class Card; module Set; class Type # Set: All "Basic" cards # module Basic; extend Card::Set def self.source_location; "/Users/ethan/dev/decko/gem/card/mod/standard/set/type/basic.rb"; end module HtmlFormat; 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 == :closed || !content.present? min = card.rule(:table_of_contents).to_i return unless min && min > 0 toc = toc_items content if toc.flatten.length >= min content.replace( %( <div class="table-of-contents"> <h5>#{tr(:toc)}</h5> ) + make_table_of_contents_list(toc) + "</div>" + content ) end end def toc_items content 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 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/ethan/dev/decko/gem/card/mod/standard/set/type/basic.rb ~~
Version data entries
9 entries across 9 versions & 1 rubygems