mirror of
https://github.com/friendica/friendica
synced 2025-04-26 15:10:11 +00:00
Deprecate use of [*] BBCode tag for list items in favor of [li]
- It is conflicting with Markdown syntax
This commit is contained in:
parent
ede41166ae
commit
5b5c9ddc74
6 changed files with 46 additions and 45 deletions
|
@ -89,7 +89,7 @@ class Tos extends BaseModule
|
|||
$rules = "[ol]";
|
||||
foreach (explode("\n", $lines) as $line) {
|
||||
if (trim($line)) {
|
||||
$rules .= "\n[*]" . trim($line);
|
||||
$rules .= "\n[li]" . trim($line);
|
||||
}
|
||||
}
|
||||
$rules .= "\n[/ol]\n";
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue