Class: ReVIEW::Book::FootnoteIndex
- Defined in:
- lib/review/book/index.rb
Defined Under Namespace
Classes: Item
Class Method Summary collapse
Methods inherited from Index
#[], #each, #initialize, item_class, #item_type, #key?, #number
Constructor Details
This class inherits a constructor from ReVIEW::Book::Index
Class Method Details
.parse(src) ⇒ Object
140 141 142 143 144 145 146 147 148 149 150 151 152 |
# File 'lib/review/book/index.rb', line 140 def self.parse(src) items = [] seq = 1 src.grep(%r{\A//footnote}) do |line| if m = /\[(.*?)\]\[(.*)\]/.match(line) m1 = m[1].gsub(/\\(\])/) { $1 } m2 = m[2].gsub(/\\(\])/) { $1 } items.push Item.new(m1, seq, m2) end seq += 1 end new(items) end |