Class: ReVIEW::Book::FootnoteIndex

Inherits:
Index show all
Defined in:
lib/review/book/index.rb

Class Method Summary collapse

Methods inherited from Index

#[], #each, #initialize, #item_type, #key?, #number

Constructor Details

This class inherits a constructor from ReVIEW::Book::Index

Class Method Details

.parse(src) ⇒ Object



133
134
135
136
137
138
139
140
141
142
143
144
145
# File 'lib/review/book/index.rb', line 133

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