bryckbost / michromeformats

A Chrome extension to display microformats on a page
http://ryckbost.com/blog/archives/2010/04/21/chrome-microformats-michromeformats/
MIT License
42 stars 10 forks source link

hRecipe type/value parse problem #5

Open stereoket opened 13 years ago

stereoket commented 13 years ago

I've just been testing out the extension and f you use the

value+type properties, it destroys the extension seeing the ingredient property.

What happens is the value property gets shown and nothing else within the ingredient parent.

eg HTML:

<div class="hrecipe">

<p class="fn">Sugar</p>
<ul>
    <li class="ingredient">
        <span class="value">2</span>
        <span class="type"> tbsp</span>
        Sugar</li>
</ul>
</div>

It should show 2 tbsp Sugar as an ingredient listing, but it only shows 2

bryckbost commented 13 years ago

Thanks for the heads up. Patches are always welcomed.