mirror of
https://github.com/friendica/friendica
synced 2025-04-22 05:10:10 +00:00
Normalize [ul] and [ol] BBCode output to <ul> and <ol> HTML tags
This commit is contained in:
parent
c3cecf3d28
commit
200bdb55ba
3 changed files with 9 additions and 9 deletions
|
@ -281,8 +281,8 @@ class HTML
|
|||
self::tagToBBCode($doc, 'div', [], "\r", "\r");
|
||||
self::tagToBBCode($doc, 'p', [], "\n", "\n");
|
||||
|
||||
self::tagToBBCode($doc, 'ul', [], "[list]", "[/list]");
|
||||
self::tagToBBCode($doc, 'ol', [], "[list=1]", "[/list]");
|
||||
self::tagToBBCode($doc, 'ul', [], "[ul]", "[/ul]");
|
||||
self::tagToBBCode($doc, 'ol', [], "[ol]", "[/ol]");
|
||||
self::tagToBBCode($doc, 'li', [], "[*]", "");
|
||||
|
||||
self::tagToBBCode($doc, 'hr', [], "[hr]", "");
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue