Recently first time I had to use microformats and microdata and met following problem. I need to display currency not in ISO-format. As I understood in microdata I could provide actual value in "content" attribute:
<span itemprop="price">123</span> <span itemprop="currency" content="RUB">руб.</span>
In microformats if I do like that:
<span class="price">123 руб.</span>
I'm getting "Price field includes invalid characters" warning in Google structured data testing tool
If like that:
<span class="price">123</span> <span class="currency">руб.</span>
then "Currency should be in ISO 4217 format" warning.
How can I do it in microformats? Do I have to worry about all these warnings?