Trivial: Rename dialect action to block quotes rather than simple quotes

This commit is contained in:
Robin Ward 2013-09-09 14:11:56 -04:00
parent 49910b860b
commit 84a8a358c3
1 changed files with 1 additions and 1 deletions

View File

@ -4,7 +4,7 @@ Discourse.Dialect.on("register", function(event) {
var dialect = event.dialect,
MD = event.MD;
dialect.block["fix_simple_quotes"] = function(block, next) {
dialect.block["fix_block_quotes"] = function(block, next) {
var m = /(^|\n) +(\>[\s\S]*)/.exec(block);
if (m && m[2] && m[2].length) {
var blockContents = block.replace(/(^|\n) +\>/, "$1>");