aboutsummaryrefslogtreecommitdiffstats
path: root/include/bbcode.php
diff options
context:
space:
mode:
authorMario <mario@mariovavti.com>2021-09-07 07:32:49 +0000
committerMario <mario@mariovavti.com>2021-09-07 07:32:49 +0000
commit52995bde125a568894ae441bb75cd69ac7945ef7 (patch)
tree3c0e56d65d6cafd27c53506e2d725c68cd9fbc52 /include/bbcode.php
parent2523ebc76af2ba016bb56ece70ce7a1f827d730a (diff)
downloadvolse-hubzilla-52995bde125a568894ae441bb75cd69ac7945ef7.tar.gz
volse-hubzilla-52995bde125a568894ae441bb75cd69ac7945ef7.tar.bz2
volse-hubzilla-52995bde125a568894ae441bb75cd69ac7945ef7.zip
deprecate the custom highlight [hl] bbcode in favor of [mark] which is a html5 standard
Diffstat (limited to 'include/bbcode.php')
-rw-r--r--include/bbcode.php10
1 files changed, 8 insertions, 2 deletions
diff --git a/include/bbcode.php b/include/bbcode.php
index 25615e385..42790aaca 100644
--- a/include/bbcode.php
+++ b/include/bbcode.php
@@ -1351,12 +1351,18 @@ function bbcode($Text, $options = []) {
if (strpos($Text,'[/color]') !== false) {
$Text = preg_replace("(\[color=(.*?)\](.*?)\[\/color\])ism", "<span style=\"color: $1;\">$2</span>", $Text);
}
- // Check for colored text
+
+ // @DEPRECATED: Check for colored text (deprecated in favor of mark which is a html5 standard)
if (strpos($Text,'[/hl]') !== false) {
- $Text = preg_replace("(\[hl\](.*?)\[\/hl\])ism", "<span class=\"default-highlight\">$1</span>", $Text);
+ $Text = preg_replace("(\[hl\](.*?)\[\/hl\])ism", "<span class=\"default-highlight\">$1</span>", $Text);
$Text = preg_replace("(\[hl=(.*?)\](.*?)\[\/hl\])ism", "<span style=\"background-color: $1;\">$2</span>", $Text);
}
+ if (strpos($Text,'[/mark]') !== false) {
+ $Text = preg_replace("(\[mark\](.*?)\[\/mark\])ism", "<mark class=\"mark\">$1</mark>", $Text);
+ $Text = preg_replace("(\[mark=(.*?)\](.*?)\[\/mark\])ism", "<mark style=\"background-color: $1;\">$2</mark>", $Text);
+ }
+
// Check for sized text
// [size=50] --> font-size: 50px (with the unit).
if (strpos($Text,'[/size]') !== false) {