Skip to content

Commit

Permalink
BUGFIX: make_list should only look for lists
Browse files Browse the repository at this point in the history
  • Loading branch information
ZogStriP committed Feb 3, 2014
1 parent 458f642 commit 659589e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vendor/assets/javascripts/better_markdown.js
Original file line number Diff line number Diff line change
Expand Up @@ -1036,7 +1036,7 @@

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();

// Check for an HR following a list: features/lists/hr_abutting
Expand Down

0 comments on commit 659589e

Please sign in to comment.