Does the img tag's alt attribute require encoding?

encoding, escaping, html, syntax

Solution

No, it does not need to be encoded like a URI. However, HTML characters must be encoded, like this...

<img src="myimg.png" alt="Me &amp; my image" />

Problem

In html does the text inside the img tag's alt attribute require encoding/escaping? Non encoded example: ``` <img src="myimg.png" alt="image description" /> ``` Encoded example: ``` <img src="myimg.png" alt="image%20description" /> ```

Original source