Added back missing list item custom parsing

This commit is contained in:
Wu Cheng-Han 2015-09-25 18:10:36 +08:00
parent fa957db272
commit 4e358cd6f4
2 changed files with 11 additions and 2 deletions

View file

@ -429,8 +429,8 @@ var md = new Remarkable('full', {
typographer: true,
highlight: highlightRender
});
md.renderer.rules.list_item_open = function (/* tokens, idx, options, env */) {
return '<li class="raw">';
md.renderer.rules.list_item_open = function ( /* tokens, idx, options, env */ ) {
return '<li class="raw">';
};
md.renderer.rules.blockquote_open = function (tokens, idx /*, options, env */ ) {
return '<blockquote class="raw">\n';