mirror of
https://git.friendi.ca/friendica/friendica-addons.git
synced 2024-11-21 14:43:40 +00:00
Markdown: Avoid problems with [*] BBCode element
This commit is contained in:
parent
d5c7a49db2
commit
84fc5ba922
1 changed files with 1 additions and 0 deletions
|
@ -64,6 +64,7 @@ function markdown_post_local_start(&$request) {
|
||||||
// (right chevrons are used for quoting in Markdown)
|
// (right chevrons are used for quoting in Markdown)
|
||||||
// See https://github.com/friendica/friendica/issues/10634
|
// See https://github.com/friendica/friendica/issues/10634
|
||||||
$text = strtr($text, ['<' => '<']);
|
$text = strtr($text, ['<' => '<']);
|
||||||
|
$text = str_replace('[*]', '[li]', $text);
|
||||||
|
|
||||||
return Markdown::toBBCode($text);
|
return Markdown::toBBCode($text);
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in a new issue