summaryrefslogtreecommitdiff
path: root/app/helpers/markup_helper.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/helpers/markup_helper.rb')
-rw-r--r--app/helpers/markup_helper.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/helpers/markup_helper.rb b/app/helpers/markup_helper.rb
index bad949d7a22..3b08b0447b2 100644
--- a/app/helpers/markup_helper.rb
+++ b/app/helpers/markup_helper.rb
@@ -73,7 +73,7 @@ module MarkupHelper
return '' unless text.present?
context[:project] ||= @project
- html = context.delete(:rendered) || markdown_unsafe(text, context)
+ html = markdown_unsafe(text, context)
banzai_postprocess(html, context)
end