oga/spec/oga
Yorick Peterse 4b1c296936 Automatically closing of certain HTML tags
This ensures that HTML such as this:

    <li>foo
    <li>bar

is parsed as this:

    <li>foo</li>
    <li>bar</li>

and not as this:

    <li>
        foo
        <li>bar</li>
    </li>

Fixes #97
2015-04-27 18:43:26 +02:00
..
css Added CSS/XPath Parser.parse_with_cache 2015-03-23 00:22:59 +01:00
html Lazy decoding of XML/HTML entities. 2015-03-05 23:00:43 +01:00
xml Automatically closing of certain HTML tags 2015-04-27 18:43:26 +02:00
xpath Ignore declared namespaces in HTML documents 2015-03-26 22:38:39 +01:00
entity_decoder_spec.rb Added Oga::EntityDecoder 2015-04-07 21:18:15 +02:00
lru_spec.rb Added LRU#maximum=/maximum 2015-03-23 00:26:48 +01:00
node_name_set_spec.rb Added NodeNameSet class 2015-04-22 00:54:29 +02:00
oga_spec.rb Use sax_parse_html for HTML documents. 2015-03-21 01:22:59 +01:00