HTML6 icon indicating copy to clipboard operation
HTML6 copied to clipboard

Creating links with attribute

Open m93a opened this issue 10 years ago • 0 comments

I've been reading MathML specification and found that all the elements can have a href attribute and become a link. It would be great to have something like this in html.

Before:

<list>
 <item><html:a href="http://foo.com">Item1</html:a></item>
 <item>Item2</item>
</list>

After:

<list>
 <item html:href="http://foo.com">Item1</item>
 <item>Item2</item>
</list>

It's just an idea but I thing it's a great step towards removing another annoying HTML tag to learn (¡viva las simplicaciónes!)

m93a avatar Sep 22 '13 19:09 m93a