aboutsummaryrefslogtreecommitdiffstats
path: root/tests (unfollow)
Commit message (Collapse)AuthorFilesLines
2021-03-01Use > instead of &gt in entity test generatorbptato1-5/+5
2021-02-28Fix small mistakes in entity test generatorbptato1-15/+15
2021-02-28Support single-codepoint HTML entities specified by whatwgbptato2-0/+8947
https://html.spec.whatwg.org/multipage/named-characters.html#named-character-references
2021-02-13Nested <dl>sbptato2-0/+13
2021-02-13Fix <dl compact>bptato2-2/+41
2021-02-13<dl> testbptato2-0/+41
2020-08-25In HTML5 anchors should not be closed when encountering divs, for example, ↵Ambrose Li5-0/+38
but should be closed when encountering buttons, for example. Many sites that use HTML5-style anchors end up having links displayed with zero-length link texts. The proposed patch correct this behaviour by detecting whether the document is HTML5, then suppressing the close-anchor action in CLOSE_A if it's an HTML5 document. A new macro handles the HTML5-specific cases where anchors are not already always closed. This also fixes a bug in the tokenizing FSM in etc.c that prevented the !doctype element from being recognized; the fix is necessary because HTML5 detection depends on checking the !doctype element.
2020-08-24Cleaned version of 20200823_q branch. Changes the behaviour of the q tag ↵Ambrose Li22-0/+71
(when m17n and Unicode are configured) to use "smart" quotes if the display charset can handle them. Falls back to old behaviour (ASCII quotes with left/right quote semantics for 6/0 and 2/6) if display charset is us-ascii. Also changes the behaviour of conv_entity() to convert left/right quotes and some dashes because named entities are needed for the new code for the q tag.