module Crass

def self.parse(input, options = {})

See {Tokenizer#initialize} for _options_.

Parses _input_ as a CSS stylesheet and returns a parse tree.
def self.parse(input, options = {})
  Parser.parse_stylesheet(input, options)
end

def self.parse_properties(input, options = {})

See {Tokenizer#initialize} for _options_.

HTML element's `style` attribute) and returns a parse tree.
Parses _input_ as a string of CSS properties (such as the contents of an
def self.parse_properties(input, options = {})
  Parser.parse_properties(input, options)
end