Is there an open standard (microformats'ish) that exists for specifying an arbitrary table of key/value pairs in an HTML meta tag?
So let's say I had a website about color, and had a page about a 5-color palette. I essentially want to express information represented in the page, in a format that can be gobbled up by third-party services. In this case, it's the five colors that make up the palette. Like this:
<meta name="data" content="color1:'#ffffff',color2:'#ff00ff',color3:'#ffff00',color4:'#00ffff',color5:'#00ff00'" />
I could roll my own specification, but I really hate doing that if there's something already out there. No need to pollute the web, which is already a quagmire of shady standards...
(p.s. I'm well-aware of RDF. I'd like to specify the content in the page itself... and not require loading another document just for the data.)