diff options
author | Mario <mario@mariovavti.com> | 2024-05-07 08:52:05 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2024-05-07 08:52:05 +0000 |
commit | f74922db39df383d205fdcd0f25f6690af5b6c2f (patch) | |
tree | 4a14b26114b924ac50cfff825a082cef757ee14a /include/bbcode.php | |
parent | 605aa37ad35387cbd84d1efd7bd744b5f1eb166c (diff) | |
download | volse-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/bbcode.php')
-rw-r--r-- | include/bbcode.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/bbcode.php b/include/bbcode.php index 844717572..5b97c1d9b 100644 --- a/include/bbcode.php +++ b/include/bbcode.php @@ -1408,7 +1408,7 @@ function bbcode($text, $options = []) { } // Check for strike-through text if (strpos($text,'[s]') !== false) { - $text = preg_replace("(\[s\](.*?)\[\/s\])ism", '<span style="text-decoration: line-through;">$1</span>', $text); + $text = preg_replace("(\[s\](.*?)\[\/s\])ism", '<del>$1</del>', $text); } // Check for over-line text if (strpos($text,'[o]') !== false) { |