Method: MaRuKu::In::Markdown::SpanLevelParser::CharSourceManual#consume_whitespace
- Defined in:
- lib/maruku/input/charsource.rb
#consume_whitespace ⇒ Object
123 124 125 126 127 128 129 130 131 132 133 |
# File 'lib/maruku/input/charsource.rb', line 123 def consume_whitespace while c = cur_char if (c == ?\s || c == ?\t) # puts "ignoring #{c}" ignore_char else # puts "#{c} is not ws: "<<c break end end end |