|
| 1 | +[0.23] |
| 2 | + |
| 3 | + * Don't allow space between link text and link label in a |
| 4 | + reference link. This fixes the problem of inadvertent capture: |
| 5 | + |
| 6 | + [foo] [bar] |
| 7 | + |
| 8 | + [foo]: /u1 |
| 9 | + [bar]: /u2 |
| 10 | + * Rename "horizontal rule" -> "thematic break". This matches the HTML5 |
| 11 | + meaning for the hr element, and recognizes that the element may be |
| 12 | + rendered in various ways (not always as a horizontal rule). |
| 13 | + See http://talk.commonmark.org/t/horizontal-rule-or-thematic-break/912/3 |
| 14 | + * Rename "header" -> "heading". This avoids a confusion that might arise |
| 15 | + now that HTML5 has a "header" element, distinct from the "headings" |
| 16 | + h1, h2, ... Our headings correspond to HTML5 headings, not HTML5 headers. |
| 17 | + The terminology of 'headings' is more natural, too. |
| 18 | + * ATX headers: clarify that a space (or EOL) is needed; other whitespace |
| 19 | + won't do (#373). Added a test case. |
| 20 | + * Rewrote "Entities" section with more correct terminology (#375). |
| 21 | + Entity references and numeric character references. |
| 22 | + * Clarified that spec does not dictate URL encoding/normalization policy. |
| 23 | + * New test case: list item code block with empty line (Craig M. |
| 24 | + Brandenburg). |
| 25 | + * Added example with escaped backslash at end of link label (#325). |
| 26 | + * Shortened an example so it doesn't wrap (#371). |
| 27 | + * Fixed duplicate id "attribute". |
| 28 | + * Fix four link targets (Lucas Werkmeister). |
| 29 | + * Fix typo for link to "attributes" (Robin Stocker). |
| 30 | + * Fix "delimiter" spellings and links (Sam Rawlins). |
| 31 | + * Consistent usage of "we" instead of "I" (renzo). |
| 32 | + * CommonMark.dtd - Rename `html` -> `html_block`, |
| 33 | + `inline_html` -> `html_inline` for consistency. (Otherwise it is too |
| 34 | + hard to remember whether `html` is block or inline, a source of |
| 35 | + some bugs.) |
| 36 | + * CommonMark.dtd - added `xmlns` attribute to document. |
| 37 | + * CommonMark.dtd - added `custom_block`, `custom_inline`. |
| 38 | + * CommonMark.dtd - renamed `hrule` to `thematic_break`. |
| 39 | + * Fixed some HTML inline tests, which were actually HTML blocks, given |
| 40 | + the changes to block parsing rules since these examples were written |
| 41 | + (#382). |
| 42 | + * Normalize URLs when comparing test output. This way we don't fail |
| 43 | + tests for legitimate variations in URL escaping/normalization policies |
| 44 | + (#334). |
| 45 | + * `normalize.py`: don't use `HTMLParseError`, which has been removed |
| 46 | + as of python 3.5 (#380). |
| 47 | + * Minor spacing adjustments in test output, to match cmark's output, |
| 48 | + since we test cmark without normalization. |
| 49 | + * `makespec.py`: remove need for link anchors to be on one line. |
| 50 | + * `makespec.py`: Only do two levels in the TOC. |
| 51 | + * Use `display:inline-block` rather than floats for side-by-side. |
| 52 | + This works when printed too. |
| 53 | + * Added better print CSS. |
| 54 | + |
1 | 55 | [0.22] |
2 | 56 |
|
3 | 57 | * Don't list `title` twice as HTML block tag (Robin Stocker). |
|
0 commit comments