BUGFIX: make_list should only look for lists
This commit is contained in:
parent
458f6424ff
commit
659589e563
|
@ -1036,7 +1036,7 @@
|
||||||
|
|
||||||
var next_block = next[0] && next[0].valueOf() || "";
|
var next_block = next[0] && next[0].valueOf() || "";
|
||||||
|
|
||||||
if ( next_block.match(is_list_re) || (next_block.match(/^ /) && (!next_block.match(/^ *\>/))) ) {
|
if ( next_block.match(is_list_re) ) {
|
||||||
block = next.shift();
|
block = next.shift();
|
||||||
|
|
||||||
// Check for an HR following a list: features/lists/hr_abutting
|
// Check for an HR following a list: features/lists/hr_abutting
|
||||||
|
|
Loading…
Reference in New Issue