aboutsummaryrefslogtreecommitdiffstats
path: root/include/html2bbcode.php
diff options
context:
space:
mode:
authorMario <mario@mariovavti.com>2024-05-07 08:52:05 +0000
committerMario <mario@mariovavti.com>2024-05-07 08:52:05 +0000
commitf74922db39df383d205fdcd0f25f6690af5b6c2f (patch)
tree4a14b26114b924ac50cfff825a082cef757ee14a /include/html2bbcode.php
parent605aa37ad35387cbd84d1efd7bd744b5f1eb166c (diff)
downloadvolse-hubzilla-f74922db39df383d205fdcd0f25f6690af5b6c2f.tar.gz
volse-hubzilla-f74922db39df383d205fdcd0f25f6690af5b6c2f.tar.bz2
volse-hubzilla-f74922db39df383d205fdcd0f25f6690af5b6c2f.zip
add bbcode support for the HTML5 del tag
Diffstat (limited to 'include/html2bbcode.php')
-rw-r--r--include/html2bbcode.php4
1 files changed, 4 insertions, 0 deletions
diff --git a/include/html2bbcode.php b/include/html2bbcode.php
index e0a9a630a..db8f3a8e0 100644
--- a/include/html2bbcode.php
+++ b/include/html2bbcode.php
@@ -186,7 +186,11 @@ function html2bbcode($message)
node2bbcode($doc, 'b', array(), '[b]', '[/b]');
node2bbcode($doc, 'i', array(), '[i]', '[/i]');
node2bbcode($doc, 'u', array(), '[u]', '[/u]');
+ // The s tag is deprecated in HTML5
node2bbcode($doc, 's', array(), '[s]', '[/s]');
+ node2bbcode($doc, 'del', [], '[s]', '[/s]');
+
+
node2bbcode($doc, 'mark', array(), '[mark]', '[/mark]');
node2bbcode($doc, 'span', array(), "", "");