Created
August 31, 2012 03:24
-
-
Save jonm/3548629 to your computer and use it in GitHub Desktop.
Sample list represented as text/html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<html> | |
<head></head> | |
<body> | |
<ul> | |
<!-- HTML5 microdata would also be possible here, to give | |
more semantic structure, but the below is essentially | |
an HTML version of text/uri-list --> | |
<li><a href="http://www.example.com/raindrops-on-roses"></a></li> | |
<li><a href="http://www.example.com/whiskers-on-kittens"></a></li> | |
<li><a href="http://www.example.com/doorbells"></a></li> | |
<li><a href="http://www.example.com/sleighbells"></a></li> | |
<li><a href="http://www.example.com/crisp-apple-strudel"> | |
<!-- some per-item context could go here too --> | |
</a></li> | |
</ul> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment