|
Notes:
Changes contributed by Francois Beausoleil
Changes:
Added version attribute to class.
Allow parsing tags and attributes with a dash in their names.
Instead of returning true for attributes with no values, return the attribute's value:
HTML: <input type=checkbox checked>
Ruby: {'type' => 'checkbox', 'checked' => 'checked'}
Correctly parse attributes with no spaces in them (see test_reads_multiple_short_attributes_without_quotes, test_reads_short_attributes_without_quotes and test_reads_attributes_without_quotes)
|