# File lib/maruku/input/charsource.rb, line 123 def consume_whitespace while c = cur_char if (c == 32 || c == ?\t) # puts "ignoring #{c}" ignore_char else # puts "#{c} is not ws: "<<c break end end end