module Crass
def self.parse(input, 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 = {})
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