aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJon Moss <me@jonathanmoss.me>2016-11-19 20:31:25 -0500
committerJon Moss <me@jonathanmoss.me>2016-11-19 20:31:25 -0500
commit4c3afea7dfb380f6357c9ebceac973bfa20151f6 (patch)
tree8785dfb89ccc83e5cd3bb92d8e43c390a72440c3
parent4aacace550155faab98710c045f912db80601004 (diff)
downloadrails-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.md2
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!")