@@ -233,25 +233,25 @@ export class Tokenizer {
233
233
// Check if following lines should be included in List Item
234
234
while ( src ) {
235
235
rawLine = src . split ( '\n' , 1 ) [ 0 ] ;
236
- line = rawLine ;
236
+ nextLine = rawLine ;
237
237
238
238
// Re-align to follow commonmark nesting rules
239
239
if ( this . options . pedantic ) {
240
- line = line . replace ( / ^ { 1 , 4 } (? = ( { 4 } ) * [ ^ ] ) / g, ' ' ) ;
240
+ nextLine = nextLine . replace ( / ^ { 1 , 4 } (? = ( { 4 } ) * [ ^ ] ) / g, ' ' ) ;
241
241
}
242
242
243
243
// End list item if found code fences
244
- if ( fencesBeginRegex . test ( line ) ) {
244
+ if ( fencesBeginRegex . test ( nextLine ) ) {
245
245
break ;
246
246
}
247
247
248
248
// End list item if found start of new heading
249
- if ( headingBeginRegex . test ( line ) ) {
249
+ if ( headingBeginRegex . test ( nextLine ) ) {
250
250
break ;
251
251
}
252
252
253
253
// End list item if found start of new bullet
254
- if ( nextBulletRegex . test ( line ) ) {
254
+ if ( nextBulletRegex . test ( nextLine ) ) {
255
255
break ;
256
256
}
257
257
@@ -260,20 +260,38 @@ export class Tokenizer {
260
260
break ;
261
261
}
262
262
263
- if ( line . search ( / [ ^ ] / ) >= indent || ! line . trim ( ) ) { // Dedent if possible
264
- itemContents += '\n' + line . slice ( indent ) ;
265
- } else if ( ! blankLine ) { // Until blank line, item doesn't need indentation
266
- itemContents += '\n' + line ;
267
- } else { // Otherwise, improper indentation ends this item
268
- break ;
263
+ if ( nextLine . search ( / [ ^ ] / ) >= indent || ! nextLine . trim ( ) ) { // Dedent if possible
264
+ itemContents += '\n' + nextLine . slice ( indent ) ;
265
+ } else {
266
+ // not enough indentation
267
+ if ( blankLine ) {
268
+ break ;
269
+ }
270
+
271
+ // paragraph continuation unless last line was a different block level element
272
+ if ( line . search ( / [ ^ ] / ) >= 4 ) { // indented code block
273
+ break ;
274
+ }
275
+ if ( fencesBeginRegex . test ( line ) ) {
276
+ break ;
277
+ }
278
+ if ( headingBeginRegex . test ( line ) ) {
279
+ break ;
280
+ }
281
+ if ( hrRegex . test ( line ) ) {
282
+ break ;
283
+ }
284
+
285
+ itemContents += '\n' + nextLine ;
269
286
}
270
287
271
- if ( ! blankLine && ! line . trim ( ) ) { // Check if current line is blank
288
+ if ( ! blankLine && ! nextLine . trim ( ) ) { // Check if current line is blank
272
289
blankLine = true ;
273
290
}
274
291
275
292
raw += rawLine + '\n' ;
276
293
src = src . substring ( rawLine . length + 1 ) ;
294
+ line = nextLine . slice ( indent ) ;
277
295
}
278
296
}
279
297
1 commit comments
vercel[bot] commentedon Dec 23, 2022
Successfully deployed to the following URLs:
marked-website – ./
markedjs.vercel.app
marked-website-git-master-markedjs.vercel.app
marked-website-markedjs.vercel.app
marked.js.org