class Crass::Tokenizer

def initialize(input, options = {})


CSS 3 syntax rules.
such as the IE "*" hack will be preserved even though they violate
* **:preserve_hacks** - If `true`, certain non-standard browser hacks

`:comment` tokens.
* **:preserve_comments** - If `true`, comments will be preserved as

Options:

Initializes a new Tokenizer.
def initialize(input, options = {})
  @s       = Scanner.new(preprocess(input))
  @options = options
end