diff options
author | Jon Moss <me@jonathanmoss.me> | 2016-11-19 20:31:25 -0500 |
---|---|---|
committer | Jon Moss <me@jonathanmoss.me> | 2016-11-19 20:31:25 -0500 |
commit | 4c3afea7dfb380f6357c9ebceac973bfa20151f6 (patch) | |
tree | 8785dfb89ccc83e5cd3bb92d8e43c390a72440c3 | |
parent | 4aacace550155faab98710c045f912db80601004 (diff) | |
download | rails-4c3afea7dfb380f6357c9ebceac973bfa20151f6.tar.gz rails-4c3afea7dfb380f6357c9ebceac973bfa20151f6.tar.bz2 rails-4c3afea7dfb380f6357c9ebceac973bfa20151f6.zip |
Change html-scanner to rails-html-sanitizer
[ci skip]
-rw-r--r-- | guides/source/action_view_overview.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/source/action_view_overview.md b/guides/source/action_view_overview.md index ff0127522b..c835adeab6 100644 --- a/guides/source/action_view_overview.md +++ b/guides/source/action_view_overview.md @@ -1493,7 +1493,7 @@ strip_links('Blog: <a href="http://myblog.com/">Visit</a>.') #### strip_tags(html) Strips all HTML tags from the html, including comments. -This uses the html-scanner tokenizer and so its HTML parsing ability is limited by that of html-scanner. +This functionality is powered by the rails-html-sanitizer gem. ```ruby strip_tags("Strip <i>these</i> tags!") |