Skip to content

Instantly share code, notes, and snippets.

@jonm
Created August 31, 2012 03:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jonm/3548629 to your computer and use it in GitHub Desktop.
Save jonm/3548629 to your computer and use it in GitHub Desktop.
Sample list represented as text/html
<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