Skip to content

Commit

Permalink
Fixed lists
Browse files Browse the repository at this point in the history
  • Loading branch information
bjb568 committed Oct 1, 2014
1 parent 00a66b5 commit 318b901
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mmd.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ function markdown(src) {
}
}).join('');
}
if (!src.match(/\n\n+/) && src.substr(0, 2) != '> ') return inlineEscape(src);
if (!src.match(/\n+/) && src.substr(0, 2) != '> ') return inlineEscape(src);
src.replace(/\r|\s+$/g, '').replace(/\t/g, ' ').split(/\n\n+/).forEach(function(b, f, R) {
var f = b.substr(0, 2),
R = {
Expand Down

0 comments on commit 318b901

Please sign in to comment.