Skip to content

Commit

Permalink
FIX: Regression that removed the ability to quote code
Browse files Browse the repository at this point in the history
  • Loading branch information
eviltrout committed Sep 9, 2013
1 parent 1995848 commit 49910b8
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/assets/javascripts/external/better_markdown.js
Original file line number Diff line number Diff line change
Expand Up @@ -754,7 +754,7 @@ Markdown.dialects.Gruber = {
}

// Strip off the leading "> " and re-process as a block.
var input = block.replace( /^> */gm, "" ),
var input = block.replace( /^> ?/gm, "" ),
old_tree = this.tree,
processedBlock = this.toTree( input, [ "blockquote" ] ),
attr = extract_attr( processedBlock );
Expand Down

0 comments on commit 49910b8

Please sign in to comment.