We are using tools to validate that links in our site.
The link checker keeps returning that anchor links (#) are invalid.
After investigation, we found that the name attribute was being used for the anchors.
The name attribute is obsolete in HTML5 having been replaced with id behavior.
The HTML generated has a doctype for HTML5.
Would you accept a PR to be HTML5 compliant?
We are using tools to validate that links in our site. The link checker keeps returning that anchor links (
#
) are invalid.After investigation, we found that the
name
attribute was being used for the anchors. Thename
attribute is obsolete in HTML5 having been replaced withid
behavior.The HTML generated has a doctype for HTML5. Would you accept a PR to be HTML5 compliant?