diff options
author | Mario <mario@mariovavti.com> | 2022-12-07 11:01:28 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2022-12-07 11:01:28 +0000 |
commit | 3ba27b9752a38da7d0108bfa181c10b50e5e9383 (patch) | |
tree | c9c44969d7c41afafffa7314eebba8b30b3c41cb /include | |
parent | abae5de4d8cf864b7a40445cb63191f09f17c248 (diff) | |
download | volse-hubzilla-3ba27b9752a38da7d0108bfa181c10b50e5e9383.tar.gz volse-hubzilla-3ba27b9752a38da7d0108bfa181c10b50e5e9383.tar.bz2 volse-hubzilla-3ba27b9752a38da7d0108bfa181c10b50e5e9383.zip |
add mark to html2bbcode parser
Diffstat (limited to 'include')
-rw-r--r-- | include/html2bbcode.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/html2bbcode.php b/include/html2bbcode.php index 0aa067371..c928b91b1 100644 --- a/include/html2bbcode.php +++ b/include/html2bbcode.php @@ -171,6 +171,7 @@ function html2bbcode($message) node2bbcode($doc, 'i', array(), '[i]', '[/i]'); node2bbcode($doc, 'u', array(), '[u]', '[/u]'); node2bbcode($doc, 's', array(), '[s]', '[/s]'); + node2bbcode($doc, 'mark', array(), '[mark]', '[/mark]'); node2bbcode($doc, 'big', array(), "[size=large]", "[/size]"); node2bbcode($doc, 'small', array(), "[size=small]", "[/size]"); |