| Short description: |
HTML::Sanitize |
| Category: |
Library/HTML |
| Status: |
beta |
| Created: |
2004-10-25 04:40:43 GMT |
| Last update: |
2004-10-25 04:40:43 GMT |
| Owner: |
MoonWolf
(Projects of this owner) |
| Homepage: |
not available |
| Download: |
http://www.moonwolf.com/ruby/archive/htmlsanitize-0.0.20041025.tar.gz
|
| License: |
Ruby's |
| Dependency: |
|
| Description: |
HTML::Sanitize - HTML sanitizing library
========================================
USAGE
-----
require 'html/sanitize'
require 'cgi'
cgi=CGI.new
msg = cgi['msg']
msg = HTML::Sanitize::sanitize(msg)
cgi.out('text/html') {
msg
}
|