mirror of
https://github.com/friendica/friendica
synced 2025-04-24 03:10:11 +00:00
[BBCode] Improve support for strikethrough
This commit is contained in:
parent
83c3744628
commit
369518e7b6
2 changed files with 4 additions and 1 deletions
|
@ -221,6 +221,9 @@ class HTML
|
|||
self::tagToBBCode($doc, 'b', [], '[b]', '[/b]');
|
||||
self::tagToBBCode($doc, 'i', [], '[i]', '[/i]');
|
||||
self::tagToBBCode($doc, 'u', [], '[u]', '[/u]');
|
||||
self::tagToBBCode($doc, 's', [], '[s]', '[/s]');
|
||||
self::tagToBBCode($doc, 'del', [], '[s]', '[/s]');
|
||||
self::tagToBBCode($doc, 'strike', [], '[s]', '[/s]');
|
||||
|
||||
self::tagToBBCode($doc, 'big', [], "[size=large]", "[/size]");
|
||||
self::tagToBBCode($doc, 'small', [], "[size=small]", "[/size]");
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue