Multiple choice technology web technology The tag is: Always converts HTML markup to entity equivalents, like < Never converts HTML markup to entity equivalents Converts markup when filter=true 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.