workaround bbcode parser voring brackets

staging
multiple creatures 2019-07-15 13:49:47 -05:00
parent 45408c3c01
commit 441bead7ba
1 changed files with 2 additions and 0 deletions

View File

@ -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