September 2009
9 posts
Dive into HTML5 →
Mark Pilgrim’s in-progress book on HTML5. It’s already amazing and set to become even more amazing as it’s fleshed out.
via Ajaxian.
1 tag
/^(?:[a-z\d!#\$%&'\*\+\-\/=\?\^_`\{\|\}~]+|\.)+@[a-z\d\-]+(?:\.[a-z\d\-]+)*$/...
– This regular expression describes the HTML5 e-mail address syntax. The syntax is described in the spec as ABNF format
1*( atext / "." ) "@" ldh-str 1*( "." ldh-str )
But to figure out what the hell that means, you must read the ABNF format RFC, the e-mail RFC and a domain name RFC.
...
HTML 5: The Markup Language →
Via Zeldman. Looks like this is going to be an excellent and definitive guide for developers, something we’ve been lacking.