aboutsummaryrefslogtreecommitdiffstats
path: root/view/js
diff options
context:
space:
mode:
authorMario <mario@mariovavti.com>2021-09-07 07:32:49 +0000
committerMario <mario@mariovavti.com>2021-09-07 07:33:36 +0000
commit60843605889fa9d590ce6c4adc0f3f03f23a55fe (patch)
treec9428bda822d8f57122e3e9c8d1432e4f7ea96a5 /view/js
parent0f54b26e9d458c0c12cd3cbdb609e439eb9e3812 (diff)
downloadvolse-hubzilla-60843605889fa9d590ce6c4adc0f3f03f23a55fe.tar.gz
volse-hubzilla-60843605889fa9d590ce6c4adc0f3f03f23a55fe.tar.bz2
volse-hubzilla-60843605889fa9d590ce6c4adc0f3f03f23a55fe.zip
deprecate the custom highlight [hl] bbcode in favor of [mark] which is a html5 standard
Diffstat (limited to 'view/js')
-rw-r--r--view/js/autocomplete.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/view/js/autocomplete.js b/view/js/autocomplete.js
index 596dc7076..d6893073d 100644
--- a/view/js/autocomplete.js
+++ b/view/js/autocomplete.js
@@ -360,7 +360,7 @@ function string2bb(element) {
return;
if(type=='bbcode') {
- var open_close_elements = ['bold', 'italic', 'underline', 'overline', 'strike', 'superscript', 'subscript', 'quote', 'code', 'open', 'spoiler', 'map', 'nobb', 'list', 'checklist', 'question', 'answer', 'ul', 'ol', 'dl', 'li', 'table', 'tr', 'th', 'td', 'center', 'color', 'font', 'size', 'zrl', 'zmg', 'rpost', 'qr', 'observer', 'observer.language','embed', 'highlight', 'url', 'h1', 'h2', 'h3', 'h4', 'h5', 'h6'];
+ var open_close_elements = ['bold', 'italic', 'underline', 'overline', 'strike', 'superscript', 'subscript', 'quote', 'code', 'open', 'spoiler', 'map', 'nobb', 'list', 'checklist', 'question', 'answer', 'ul', 'ol', 'dl', 'li', 'table', 'tr', 'th', 'td', 'center', 'color', 'font', 'size', 'zrl', 'zmg', 'rpost', 'qr', 'observer', 'observer.language','embed', 'mark', 'url', 'h1', 'h2', 'h3', 'h4', 'h5', 'h6'];
var open_elements = ['observer.baseurl', 'observer.address', 'observer.photo', 'observer.name', 'observer.webname', 'observer.url', '*', 'hr' ];
var elements = open_close_elements.concat(open_elements);