HTML - Escape / Sanitizer
Table of Contents
1 - About
A sanitizer is a program that will:
- not accept all HTML elements
- and or transform them as text (escape)
This is to avoid script injection and should be used on the server side (ie not client) to validate/transform all inputs.
2 - Articles Related
3 - Example of Usage
- The input of a form application such as an editor
- The input of a web service call.