Markdown - fixed bug in local anchor links

This commit is contained in:
peter 2019-02-03 03:23:47 +01:00
parent 9a5f9829c1
commit 990cc45a26
1 changed files with 1 additions and 0 deletions

View File

@ -34,6 +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);
self::getApp()->saveTimestamp($stamp1, "parser");