Stylish RDFa

Small Javascript file that allows elements to be styled using the full URIs of RDFa attributes instead of CURIEs.

This should turn green!

Example Usage

<script type="text/javascript" href="stylish.js"></script>
<style type="text/css">
	*[uri-property~="http://purl.org/dc/terms/title"]
	{
		color: #090;
		background: #cfc;
	}
</style>
<div xmlns:dc="http://purl.org/dc/terms/">
	<h1 property="dc:title">The Title</h1>
</div>