fix line break

This commit is contained in:
Christopher Jeffrey 2011-08-26 22:33:47 -05:00
parent ec66281957
commit 64e331c5e1

View File

@ -421,7 +421,7 @@ var tok = function() {
body.push(next().text);
}
return '<p>'
+ inline.lexer(body.join(' '))
+ inline.lexer(body.join('\n'))
+ '</p>';
}
};