Sha256: c12137382aacc815691264c360ea7f7566deff38e0a0966c85378a4f80939979
Contents?: true
Size: 1.87 KB
Versions: 1
Compression:
Stored size: 1.87 KB
Contents
module WikiCloth class Section < String def initialize(title=nil, id=nil) self.title = title @children = [] @id = id @template = nil @auto_toc = nil end def children @children end def id @id end def auto_toc=(val) @auto_toc = val end def template=(val) @template = val end def title=(val) if val =~ /^([=]{1,6})\s*(.*?)\s*(\1)/ @depth = $1.length @clean_title = $2 @title = val else @depth = 1 @clean_title = val @title = val end end def title @clean_title end def depth @depth ||= 1 end def get_section(id) return self.wikitext() if self.id == id @children.each do |child| ret = child.get_section(id) return ret unless ret.nil? end nil end def wikitext(opt={}) options = { :replace => {} }.merge(opt) if options[:replace][self.id].nil? ret = "#{@title}#{self}" ret += @children.collect { |c| c.wikitext(options) }.join ret else options[:replace][self.id] end end def render(opt={}) options = { :noedit => opt[:link_handler].nil? ? true : false }.merge(opt) if self.title.nil? ret = "" else ret = "<h#{self.depth}>" + (options[:noedit] == true ? "" : "<span class=\"editsection\">[<a href=\"" + options[:link_handler].section_link(self.id) + "\" title=\"Edit section: #{self.title}\">edit</a>]</span> ") + "<span id=\"#{self.id}\" class=\"mw-headline\">#{self.title}</span></h#{self.depth}>" end ret += @template ? self.gsub(/\{\{\{\s*([A-Za-z0-9]+)\s*\}\}\}/,'\1') : self ret += "__TOC__" if @auto_toc ret += @children.collect { |c| c.render(options) } .join ret end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
wikicloth-0.6.1 | lib/wikicloth/section.rb |