FIX: Regression that removed the ability to quote code

This commit is contained in:
Robin Ward 2013-09-09 13:19:18 -04:00
parent 199584824b
commit 49910b860b
2 changed files with 1 additions and 1 deletions

View File

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