aboutsummaryrefslogtreecommitdiffstats
path: root/app/helpers
diff options
context:
space:
mode:
authorJavan Makhmali <javan@javan.us>2018-10-03 17:49:32 -0400
committerJavan Makhmali <javan@javan.us>2018-10-03 17:49:32 -0400
commit598ef2ee82a4c502deba678ed9191f5f40930132 (patch)
tree1f23eb17e371230f6e1f82fd6504a87d4bfc7aab /app/helpers
parentaa1d46389a8cc9635f4354b3e7be70a8361ed7ed (diff)
downloadrails-598ef2ee82a4c502deba678ed9191f5f40930132.tar.gz
rails-598ef2ee82a4c502deba678ed9191f5f40930132.tar.bz2
rails-598ef2ee82a4c502deba678ed9191f5f40930132.zip
Customize tag and attribute sanitization
Fixes #6
Diffstat (limited to 'app/helpers')
-rw-r--r--app/helpers/action_text/content_helper.rb6
1 files changed, 5 insertions, 1 deletions
diff --git a/app/helpers/action_text/content_helper.rb b/app/helpers/action_text/content_helper.rb
index 6d00eee648..d6ced93502 100644
--- a/app/helpers/action_text/content_helper.rb
+++ b/app/helpers/action_text/content_helper.rb
@@ -18,7 +18,11 @@ module ActionText
end.chomp
end
- content.to_html
+ sanitize content.to_html, tags: ActionText::ALLOWED_TAGS, attributes: ActionText::ALLOWED_ATTRIBUTES
end
end
+
+ SANITIZER = Rails::Html::Sanitizer.white_list_sanitizer
+ ALLOWED_TAGS = SANITIZER.allowed_tags + [ ActionText::Attachment::TAG_NAME, "figure", "figcaption" ]
+ ALLOWED_ATTRIBUTES = SANITIZER.allowed_attributes + ActionText::Attachment::ATTRIBUTES
end