Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update LanguageSelector.astro: value must be omitted for boolean attr…
…ibutes in html tags <select> 👎<option value="/" selected='true'> English </option> 👈 Change from this 👍<option value="/" selected> English </option> 👈 to this According HTML5 spec on boolean attributes - https://www.w3.org/TR/2008/WD-html5-20080610/semantics.html#boolean If the attribute is present, its value must either be the empty string or a value that is a case-insensitive match for the attribute's canonical name, with no leading or trailing whitespace.
- Loading branch information