Skip to content

Commit

Permalink
Update CommonMark spec to 0.30
Browse files Browse the repository at this point in the history
  • Loading branch information
rlidwka committed Jun 30, 2021
1 parent 064d602 commit 0b14fa0
Show file tree
Hide file tree
Showing 4 changed files with 4,538 additions and 4,446 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,11 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).


## [12.1.0] - WIP
### Changed
- Updated CM spec compatibility to 0.30.


## [12.0.6] - 2021-04-16
### Fixed
- Newline in `alt` should be rendered, #775.
Expand Down Expand Up @@ -562,6 +567,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Renamed presets folder (configs -> presets).


[12.1.0]: https://github.com/markdown-it/markdown-it/compare/12.0.6...12.1.0
[12.0.6]: https://github.com/markdown-it/markdown-it/compare/12.0.5...12.0.6
[12.0.5]: https://github.com/markdown-it/markdown-it/compare/12.0.4...12.0.5
[12.0.4]: https://github.com/markdown-it/markdown-it/compare/12.0.3...12.0.4
Expand Down
2 changes: 1 addition & 1 deletion lib/rules_block/html_block.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ var HTML_OPEN_CLOSE_TAG_RE = require('../common/html_re').HTML_OPEN_CLOSE_TAG_RE
// last argument defines whether it can terminate a paragraph or not
//
var HTML_SEQUENCES = [
[ /^<(script|pre|style)(?=(\s|>|$))/i, /<\/(script|pre|style)>/i, true ],
[ /^<(script|pre|style|textarea)(?=(\s|>|$))/i, /<\/(script|pre|style|textarea)>/i, true ],
[ /^<!--/, /-->/, true ],
[ /^<\?/, /\?>/, true ],
[ /^<![A-Z]/, />/, true ],
Expand Down
Loading

0 comments on commit 0b14fa0

Please sign in to comment.