Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

16
votes
3answers
1k views

microformats, rdf or microdata

is there any difference between using one of this technologies? I'm building now a site using HTML5, and I'm having hard time to decide which one of them to use. I cannot see any difference between ...
6
votes
3answers
641 views

OpenGraph or Schema.org?

Just wondering whether you guys out there are favouring the OpenGraph protocol following markup like: <meta property="og:title" content="The Rock" /> <meta property="og:type" content="movie" ...
6
votes
3answers
2k views

Can I add Microdata from HTML5 to a XHTML Strict site and still be compliant?

I've got a site coded in XHTML 1.0 Strict. I want to use the new Microdata to add breadcrumbs to my site (so Google will understand them). My old non-microdata marked-up breadcrumbs look like this: ...
4
votes
2answers
116 views

What microdata should I use for a blog?

The blog is basically a page that lists the summary of like 10 articles, each item title linking to the full article page. I've seen: http://schema.org/Blog http://schema.org/Article (or maybe ...
4
votes
2answers
388 views

Preferred approach for marking up a blog with schema.org

Background/context As schema.org is relatively new, perhaps this question will promote more discussion than a definitive answer. Either way, hopefully some learning from others' ...
4
votes
2answers
246 views

How can I manage microdata with xslt?

I'm trying to add a tag like <div itemscope> in my xslt transformation but I get an error.(The expected token is '=') I'm working in C# .net 4.0 xslt 1.0.
4
votes
2answers
503 views

Is there currently a way to use HTML5 <meta> tags outside of <head> in WebKit?

I'm trying to use <meta> tags throughout my HTML document to mark-up hidden microdata values, as descriped in Mark Pilgrim's Dive Into HTML 5. However, when my page loads in Chrome ...
3
votes
2answers
142 views

What's the best way to parse RDFa, Microdata, etc, store and display info back using a uniform schema/vocabulary (schema.org's for example)

I'm mainly using Ruby to do this but my plan of attack thus far is as follows: Use the gems rdf,rdf-rdfa, and either rdf-microdata or mida to parse data given any URI. I think it'd be best to map to ...
3
votes
1answer
215 views

Using AggregateRating and ratingValue when the value is an image

I'm trying to add some rich snippets to my site and am struggling a little with the AggregateRating section as the value for my ratingValue is displayed only as an image. My markup looks like this: ...
3
votes
1answer
117 views

Which microformats should my blog implement?

Or microdata, RDF(a) or others. 'entities' a blog has would include posts, comments, taxonomies and users. For posts I found BlogPosting and hAtom, which is a draft spec. hCard and rel="tag" come ...
3
votes
2answers
772 views

When using HTML5 Microdata, should the 'itemscope' and 'itemtype' always be used on the same element?

I'm trying to understand the reason behind the existence of two attributes instead of just making the element holding the 'itemtype' the one that wraps the scope for the item. Is it valid to have ...
3
votes
1answer
584 views

Bizarre problem with Google's Rich Snippets Testing Tool

I'm currently experiencing the weirdest problem with Google's Rich Snippets Testing Tool. It kept throwing up warnings for my website which didn't make sense, so I pulled all of the structured markup ...
3
votes
2answers
492 views

RDFa / Microformat - Recipe markup standards

I wonder if anyone can help? After Google announced that it will take note of RDFa / Microformats for online recipes, I've been looking into this for a couple of recipe based sites I run. However we ...
2
votes
2answers
67 views

Microdata vs RDFa

I have a quick question about RDFa and Microdata. My current understanding is that RDFa is RDF implemented into HTML but is complicated for new developers like myself, Microdata seems really easy and ...
2
votes
1answer
55 views

How to use the “UserComments” schema item?

Let's say I have the mark-up like this: <ul id="comments"> <li class="comment"> <div class="author">on Friday 3th, Jenny said:</div> <div ...
2
votes
3answers
117 views

What is RDFa + microdata / microformats and why might I need them?

I have stumbled upon RDFa and have seen the terms microdata and microformats used frequently. What are they and why might they be useful when developing websites?
2
votes
1answer
195 views

review count and rating using an image - schema.org

I need some help getting some rich snippets to my site I inserted the review microdata following the instructions given on schema.org here http://schema.org/docs/gs.html#advanced_missing using the ...
2
votes
1answer
79 views

How do you format keywords in the microdata for a creativeWork

I'm working with microdata and I want to use the keywords for a creativework. The schema specifies that it should be text but do I put each keyword in a separate element with itemprop="keywords" or do ...
2
votes
1answer
213 views

How do I relate items in schema.org?

Suppose I have this simple HTML page about a guy getting a job: <!DOCTYPE HTML> <html> <head> <meta charset="utf-8"> <title>New Job for John ...
1
vote
1answer
85 views

HTML5 validation for Microdata Breadcrumbs

I'm trying to get my pages to validate and the only error it is now throwing is: Attribute itemprop not allowed on element a at this point. My code is as follows: <div itemscope ...
1
vote
3answers
86 views

Is it OK to hide microdata with CSS?

let's say I have some html document with a lot of text. Is it "good" (~not bad :)) to have elements that contain microdata and hide those elements so that user won't actually see them? Let's say I ...
1
vote
1answer
74 views

Can I combine two itemscopes to describe a single item?

I would like to add microdata to a page, but the data for an item is broken up into a couple discontinuous parts of the page. If I have two span elements with an itemscope attribute, is it possible to ...
1
vote
2answers
132 views

schema.org: Brand of a Product an Organization?

We like to use HTML5 microdata in a website. But we are kind of puzzled how to apply the brand to our products. According to http://schema.org/Product, the brand is an Organization. An example: If ...
1
vote
2answers
364 views

Using Microdata's <meta> tag in HTML5

I want to specify if the Product is In Stock using HTML5 Microdata's <meta tag using schema.org. I am unsure if this is the correct syntax: <div itemscope ...
1
vote
1answer
41 views

Project references with microdata

I have a site where I need to list my projects from before. They are websites with name, URL, description, list of used technologies, and an image gallery. I was searching for a schema for it on ...
1
vote
1answer
141 views

Stripping microdata from an XHTML with PHP - using RegEx?

First: I've read the general; don't use RegEx on XHTML arguments like this one: RegEx match open tags except XHTML self-contained tags and I do understand how RegEx will fail on nested XHTML or XML ...
1
vote
1answer
73 views

html5 microdata mixed with other new semantic elements. Is this correct?

I am writing markup for a restaurant review. This is what I’ve got so far: <article itemscope itemtype="http://data-vocabulary.org/Review"> <img src="" alt="Shatranj Napoli" /> ...
1
vote
1answer
118 views

MicroData Headaches, Nesting, and Mixed up info

I understand the majority of this topic and how to nest something like address vocabulary in person vocabulary. but I'm wondering into more details for less straight forward pieces of info or "mixed ...
1
vote
3answers
629 views

Breadcrumb microdata help

I'm trying to help Google generate appropriate breadcrumb details for my website. I am currently using this as the breadcrumb: <div id="breadcrumb"> <span class="crust" itemscope="itemscope" ...
1
vote
1answer
195 views

Which HTML5 microdata do I use for a job (vacancy)?

I'm trying to markup a vacancy/job item with microdata but I wonder whether I'm doing it the right way, because my item properties like 'title' and 'date' don't make sense in combination with my ...
1
vote
1answer
60 views

Are Rich Snippets page specific or domain specific?

Google will now parse certain microdata (for example reviews) on your web pages and display the info in search results. They call this Rich Snippets I am wondering is this page specific or domain ...
0
votes
1answer
35 views

When should I use HTML5 Microdata for SEO?

So I've been looking into this HTML 5 Microdata, but I'm not sure if or when it is appropriate to use. I know that if used with rating and you search a website it will pull up things like video rating ...
0
votes
0answers
33 views

Java/Scala library / template engine to produce microdata?

is there a Java (Scala) library or template engine out there that supports me to produce valid Microdata-enriched HTML5 snippets. By support I mean things like: Guard me against typos Make sure I ...
0
votes
1answer
26 views

Which itemtype should use for TV channels using schema.org?

I am using schema.org vocabularies for microdata. Which itemtype should I use for TV channels (HBO,Cinimax,Starz,PlayBoy)? like: <div itemscope itemtype ="http://schema.org/TVChannles"> ...
0
votes
0answers
14 views

schema.org recipe implementation always return “The marked-up content doesn't appear to be the main subject of the page” Rich snippets testing tool

I'm currently testing a site I've been working on, using Google Rich snippets testing tool. The site implements the schema.org recipe microdata, and everything looks fine to me excepts that the tool ...
0
votes
1answer
149 views

Schema.org itemref - Linking multiple SportEvents to a single Place

I am experimenting with microdata in particular the use of schema.org tags. I am trying to describe multiple sports events that may have the same location property. <!--Sports Events --> ...
0
votes
0answers
41 views

Sending h“Card” using microdata

Ok, so I realize that hCard is not a valid microdata format. At least I don't believe it is. What I would like to know, is if I mark up events, people and organizations in my private label web based ...
0
votes
1answer
136 views

Stars and aggregated rating are not shown when using schema.org markup and and Review in xhtml page

I'm trying to implement schema.org's microData format in my xhtml template. Since I'm using xhtml templates, I needed to add <div itemprop="reviews" itemscope="itemscope" ...
0
votes
0answers
388 views

Facebook URL Linter incorrectly throwing error on Microdata markup

The Facebook URL Linter now throws errors when it sees tags outside of the head. The problem is that these tags are used for Microdata markup. So in my HTML, in the body, I'll have tags equivalent ...
0
votes
2answers
172 views

HTML5 microdata to show Ratings and like

Should i use <meta> to show UserInteraction http://schema.org/UserInteraction or can i use span Should i use this way only <div itemscope itemtype="http://schema.org/Article"> <span ...
0
votes
1answer
81 views

HTML5 microdata

I wish to show user dislikes in micro-data. What is the best option. Can I use UserBlocks. Or is there any other thing. I am looking for microdata only
0
votes
1answer
93 views

Jquery mobile maps with markers and list

I have tried to create a map with markers and a list below following Microdata example and it all works fine until I run it on iOS (simulator or iPhone) when the markers don't display, but the list ...
0
votes
2answers
353 views

microdata / schema.org: how to indicate name and url to the same tag

I'm adding the schema.org microdata to my website. My HTML code is like this: <div itemscope itemtype="http://schema.org/Organization"> <span class="title">Name of the ...
0
votes
1answer
25 views

Can I use Microdata with JSF 2.0?

I found this page: http://www.kiwi-community.eu/pages/viewpage.action?pageId=7733331 But it is rather discouraging. Do I simply add the namespace and use the tags ? I also seem to have a hard time ...
0
votes
2answers
405 views

Using itemprop=“branchOf” from schema.org Microdata to refer to LocalBusiness's parent company

I'm creating a simple (well, it was going to be simple before I decided to mark it up with Microdata) web page containing company contact information for a business with two offices. I'm using ...
0
votes
4answers
160 views

Writing microdata programatically (c# / ASP.NET)

Is it possible to write 'value-less' attributes to WebControl types? i.e. going from 1 = var div = new WebControl(HtmlTextWriterTag.Div); 2 = ??? 3 = Rendered output: <div ...
0
votes
0answers
205 views

Find metatags in body with javascript in Mozilla Firefox

How do i find metatags in the body section in Mozilla Firefox? Example: <!DOCTYPE html> <head profile="http://microformats.org/profile/hcalendar"></head> <body> ...