diff --git a/app/logical/sources/strategies/base.rb b/app/logical/sources/strategies/base.rb index 25e25ab48..c47822175 100644 --- a/app/logical/sources/strategies/base.rb +++ b/app/logical/sources/strategies/base.rb @@ -103,6 +103,7 @@ module Sources # this to customize how their markup is translated to dtext. def self.to_dtext(text) text = Rails::Html::FullSanitizer.new.sanitize(text, encode_special_chars: false) + text = CGI::unescapeHTML(text) text end end