- $sanitizeProvider
- service in module ngSanitize
Sanitizes an html string by stripping all potentially dangerous tokens.
The input is sanitized by parsing the HTML into tokens. All safe tokens (from a whitelist) are then serialized back to properly escaped html string. This means that no unsafe input can make it into the returned string.
The whitelist for URL sanitization of attribute values is configured using the functions aHrefSanitizationWhitelist
and imgSrcSanitizationWhitelist
of $compileProvider
.
The input may also contain SVG markup if this is enabled via $sanitizeProvider
.
Usage
$sanitize(html);
Arguments
Param | Type | Details |
---|---|---|
html | string | HTML input. |
Returns
string |
Sanitized HTML. |
Please login to continue.