class Mustache::Parser

def regexp(thing)

usable by the string scanner.
Used to quickly convert a string into a regular expression
def regexp(thing)
  Regexp.new Regexp.escape(thing) if thing
end