Multiple choice technology web technology

The tag is:

  1. Always converts HTML markup to entity equivalents, like <

  2. Never converts HTML markup to entity equivalents

  3. Converts markup when filter=true

  4. Converts markup when markup=false

Reveal answer Fill a bubble to check yourself
C Correct answer
Explanation

The tag has a 'filter' attribute that controls HTML escaping. When filter=true (the default), special characters like < and > are converted to their entity equivalents (<, >) for XSS protection. Setting filter=false disables this conversion.