Merge pull request 'Markdown: Avoid problems with [*] BBCode element' (#1463) from heluecht/friendica-addons:bbcode-list into develop
Reviewed-on: https://git.friendi.ca/friendica/friendica-addons/pulls/1463pull/1465/head
commit
52ea77eabb
|
@ -64,6 +64,7 @@ function markdown_post_local_start(&$request) {
|
|||
// (right chevrons are used for quoting in Markdown)
|
||||
// See https://github.com/friendica/friendica/issues/10634
|
||||
$text = strtr($text, ['<' => '<']);
|
||||
$text = str_replace('[*]', '[li]', $text);
|
||||
|
||||
return Markdown::toBBCode($text);
|
||||
});
|
||||
|
|
Loading…
Reference in New Issue