Revert "FIX: Markdown bug", breaks build

This reverts commit 4a32cddf80.
This commit is contained in:
Sam 2013-11-20 10:41:21 +11:00
parent 7603faa20d
commit 08ad5d479e
2 changed files with 2 additions and 7 deletions

View File

@ -50,10 +50,6 @@ test("Traditional Line Breaks", function() {
cooked(input, traditionalOutput, "It supports traditional markdown via a Site Setting");
});
test("Unbalanced underscores", function() {
cooked("[evil_trout][1] hello_\n\n[1]: http://eviltrout.com", "<p><a href=\"http://eviltrout.com\">evil_trout</a> hello_</p>");
});
test("Line Breaks", function() {
cooked("[] first choice\n[] second choice",
"<p>[] first choice<br/>[] second choice</p>",

View File

@ -643,8 +643,7 @@
var DialectHelpers = {};
DialectHelpers.inline_until_char = function( text, want ) {
var consumed = 0,
nodes = [],
patterns = this.dialect.inline.__patterns__.replace('|_|', '');
nodes = [];
while ( true ) {
if ( text.charAt( consumed ) === want ) {
@ -658,7 +657,7 @@
return null;
}
var res = this.dialect.inline.__oneElement__.call(this, text.substr( consumed ), patterns );
var res = this.dialect.inline.__oneElement__.call(this, text.substr( consumed ) );
consumed += res[ 0 ];
// Add any returned nodes.
nodes.push.apply( nodes, res.slice( 1 ) );