FIX: Removes console.log

This commit is contained in:
Robin Ward 2014-01-22 11:07:04 -05:00
parent 7a82b65386
commit 745cd0f4e9

View File

@ -29,7 +29,6 @@ Discourse.Dialect.registerBlock('html', function(block, next) {
// Fix manual blockquote paragraphing even though it's not strictly correct
if (block.search(/[^\s]+<blockquote/) === 0) {
console.log(/[^\s]+<blockquote/.exec(block));
split = splitAtLast('blockquote', block, next, true);
if (split) { return this.processInline(split[0]); }
}