Markdown - fixed bug in local anchor links, optimized replacer

This commit is contained in:
peter 2019-02-03 10:33:15 +01:00
parent 990cc45a26
commit 0ca762001b
1 changed files with 1 additions and 1 deletions

View File

@ -34,7 +34,7 @@ class Markdown extends BaseObject
$MarkdownParser->hard_wrap = $hardwrap;
$MarkdownParser->code_class_prefix = 'language-';
$html = $MarkdownParser->transform($text);
$html = str_replace('<a href="#', '<a href="' . ltrim($_SERVER['REQUEST_URI'], '/') . '#', $html);
$html = preg_replace('/<a(.*?)href="#/is', '<a$1href="' . ltrim($_SERVER['REQUEST_URI'], '/') . '#', $html);
self::getApp()->saveTimestamp($stamp1, "parser");