diff --git a/app/lib/formatter.rb b/app/lib/formatter.rb index 3c6965a1b..9e06bcd4f 100644 --- a/app/lib/formatter.rb +++ b/app/lib/formatter.rb @@ -325,7 +325,9 @@ class Formatter def bbcode_formatter(html) begin + html.gsub!(/\[(?=\W)/, "\uf666") html = html.bbcode_to_html(false, BBCODE_TAGS, :enable, *BBCODE_TAGS.keys) + html.gsub!("\uf666", '[') rescue Exception => e end html