diff --git a/admin/editor-js.php b/admin/editor-js.php index 7e37c901..0ec08207 100644 --- a/admin/editor-js.php +++ b/admin/editor-js.php @@ -75,10 +75,15 @@ $(document).ready(function () { 'pre' : 'pre|code' }); + converter.hook('beforeParseInline', function (html) { + return html.replace(/^\s*\s*$/, function () { + return converter.makeHolder(''); + }); + }); + // 自动跟随 converter.hook('makeHtml', function (html) { - // convert all comment - html = html.replace(/<!--(.+?)-->/g, ''); + html = html.replace('
', ''); if (html.indexOf('') > 0) { var parts = html.split(/\s*<\!\-\-more\-\->\s*/), diff --git a/var/Markdown.php b/var/Markdown.php index 94202797..87d4d762 100644 --- a/var/Markdown.php +++ b/var/Markdown.php @@ -28,8 +28,8 @@ class Markdown }); $parser->hook('beforeParseInline', function ($html) use ($parser) { - return preg_replace_callback("//s", function ($matches) use ($parser) { - return $parser->makeHolder($matches[0]); + return preg_replace_callback("/^\s*\s*$/s", function ($matches) use ($parser) { + return $parser->makeHolder(''); }, $html); }); @@ -43,7 +43,7 @@ class Markdown )); } - return $parser->makeHtml($text); + return str_replace('', '', $parser->makeHtml($text)); } /**