Class: H1Parser

Inherits:
Parser show all
Defined in:
lib/Parsers/H1Parser.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from Parser

#initialize, #setNext

Constructor Details

This class inherits a constructor from Parser

Instance Attribute Details

#nextParserObject

Returns the value of attribute nextParser.



7
8
9
# File 'lib/Parsers/H1Parser.rb', line 7

def nextParser
  @nextParser
end

Instance Method Details

#parse(paragraph) ⇒ Object



8
9
10
11
12
13
14
15
16
# File 'lib/Parsers/H1Parser.rb', line 8

def parse(paragraph)
    if paragraph.type == 'H1'
        "# #{paragraph.text}"
    else
        if !nextParser.nil?
            nextParser.parse(paragraph)
        end
    end
end