|
| 1 | +[0.28.1] |
| 2 | + |
| 3 | + * Update changelog (omitted from 0.28.0 release). |
| 4 | + |
| 5 | +[0.28.0] |
| 6 | + |
| 7 | + * Update spec to 0.28. |
| 8 | + * Align punctuation regex with spec (#121). Previously some ASCII |
| 9 | + punctuation characters were not being counted, so `^_test_` came out |
| 10 | + without emphasis, for example. |
| 11 | + * Simplified a logical test, making it closer to the wording of the spec. |
| 12 | + * Don't parse reference def if last `]` is escaped (#468). |
| 13 | + E.g. |
| 14 | + |
| 15 | + [\ ] |
| 16 | + |
| 17 | + [\]: test |
| 18 | + * Dingus Makefile: remove ref to obsolete html.js. |
| 19 | + * Removed obsolete lib/xml.js (replaced by lib/render/xml.js). |
| 20 | + * Allow tabs before and after ATX closing header (Erik Edrosa). |
| 21 | + * Change precedence of Strong/Emph when both nestings possible. |
| 22 | + This accommodates the spec change to rule 14. |
| 23 | + Note that commonmark.js was not previously in conformity |
| 24 | + with rule 14 for things like `***hi****`. |
| 25 | + * Calculate "mulitple of 3" for delim runs based on original number |
| 26 | + of delims, not the number remaining after some have been |
| 27 | + used. |
| 28 | + * Make esc() method abstract and overridable (muji). |
| 29 | + * README: update documentation for overriding softbreak and esc (#118). |
| 30 | + * Remove old XMLRenderer implementation (muji). |
| 31 | + * package.json: use shorter form for repository. |
| 32 | + * Don't export version in lib/index.js. |
| 33 | + Instead, users can get version from package.json: |
| 34 | + `require('commonmark/package.json').version`. |
| 35 | + * Removed remnants of old html renderer (#113). |
| 36 | + Now we use lib/renderer/html.js. |
| 37 | + * Hand-rolled parser for link destinations. |
| 38 | + This allows nested parens, as now required by the spec. |
| 39 | + * Fix regression test example (Colin O'Dell). |
| 40 | + * dingus: Fixed iframe on load. |
| 41 | + |
1 | 42 | [0.27.0]
|
2 | 43 |
|
3 | 44 | * Update spec to 0.27.
|
|
0 commit comments