Class: ReVIEW::Book::BibpaperIndex

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



220
221
222
223
224
225
226
227
228
229
230
231
232
# File 'lib/review/book/index.rb', line 220

def self.parse(src)
  items = []
  seq = 1
  src.grep(%r{\A//bibpaper}) 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