Skip to content

Commit 1cd8a51

Browse files
committed
Fix tab preventing paragraph continuation in lists
close #830
1 parent 830757c commit 1cd8a51

File tree

3 files changed

+28
-1
lines changed

3 files changed

+28
-1
lines changed

CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,11 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

88

9+
## [12.3.1] - WIP
10+
### Fixed
11+
- Fix corner case when tab prevents paragraph continuation in lists, #830.
12+
13+
914
## [12.3.0] - 2021-12-09
1015
### Changed
1116
- `StateInline.delimiters[].jump` is removed.
@@ -583,6 +588,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
583588
- Renamed presets folder (configs -> presets).
584589

585590

591+
[12.3.1]: https://github.com/markdown-it/markdown-it/compare/12.3.0...12.3.1
586592
[12.3.0]: https://github.com/markdown-it/markdown-it/compare/12.2.0...12.3.0
587593
[12.2.0]: https://github.com/markdown-it/markdown-it/compare/12.1.0...12.2.0
588594
[12.1.0]: https://github.com/markdown-it/markdown-it/compare/12.0.6...12.1.0

lib/rules_block/list.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ module.exports = function list(state, startLine, endLine, silent) {
152152
// This code can fail if plugins use blkIndent as well as lists,
153153
// but I hope the spec gets fixed long before that happens.
154154
//
155-
if (state.tShift[startLine] >= state.blkIndent) {
155+
if (state.sCount[startLine] >= state.blkIndent) {
156156
isTerminatingParagraph = true;
157157
}
158158
}

test/fixtures/markdown-it/commonmark_extras.txt

+21
Original file line numberDiff line numberDiff line change
@@ -166,6 +166,27 @@ Regression test (code block + regular paragraph)
166166
</blockquote>
167167
.
168168

169+
Regression test (tabs in lists, #830)
170+
.
171+
1. asd
172+
2. asd
173+
174+
---
175+
176+
1. asd
177+
2. asd
178+
.
179+
<ol>
180+
<li>asd
181+
2. asd</li>
182+
</ol>
183+
<hr>
184+
<ol>
185+
<li>asd
186+
2. asd</li>
187+
</ol>
188+
.
189+
169190
Blockquotes inside indented lists should terminate correctly
170191
.
171192
- a

0 commit comments

Comments
 (0)