class Syntax::Default

def tokenize( text )

Yield the given text as a single token.
def tokenize( text )
  yield Token.new( text, :normal )
end