aboutsummaryrefslogtreecommitdiffstats
path: root/guides
diff options
context:
space:
mode:
authorJon Moss <maclover7@users.noreply.github.com>2016-11-19 20:32:30 -0500
committerGitHub <noreply@github.com>2016-11-19 20:32:30 -0500
commit20db1dab77219ee96d2334d0e59d0656f69ffb94 (patch)
tree6211af3324131605adc16439ebbcc1a26b3acd53 /guides
parentc144a20c40a995da2cfe76b1723385a9d692ab82 (diff)
parent4c3afea7dfb380f6357c9ebceac973bfa20151f6 (diff)
downloadrails-20db1dab77219ee96d2334d0e59d0656f69ffb94.tar.gz
rails-20db1dab77219ee96d2334d0e59d0656f69ffb94.tar.bz2
rails-20db1dab77219ee96d2334d0e59d0656f69ffb94.zip
Merge pull request #27116 from maclover7/jm-actionview-docs
Change html-scanner to rails-html-sanitizer
Diffstat (limited to 'guides')
-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!")