<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Sparna Blog &#187; rdfa</title>
	<atom:link href="https://blog.sparna.fr/tag/rdfa/feed/" rel="self" type="application/rss+xml" />
	<link>https://blog.sparna.fr</link>
	<description>Web de données &#124; Architecture de l&#039;information &#124; Accès aux connaissances</description>
	<lastBuildDate>Tue, 03 Jun 2025 10:30:27 +0000</lastBuildDate>
	<language>fr-FR</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
	<item>
		<title>Semantic Markdown Specifications</title>
		<link>https://blog.sparna.fr/2020/02/20/semantic-markdown/</link>
		<comments>https://blog.sparna.fr/2020/02/20/semantic-markdown/#comments</comments>
		<pubDate>Thu, 20 Feb 2020 14:46:34 +0000</pubDate>
		<dc:creator><![CDATA[Thomas Francart]]></dc:creator>
				<category><![CDATA[RDF]]></category>
		<category><![CDATA[Schema.org]]></category>
		<category><![CDATA[json-ld]]></category>
		<category><![CDATA[markdown]]></category>
		<category><![CDATA[rdfa]]></category>
		<category><![CDATA[schema.org]]></category>

		<guid isPermaLink="false">http://blog.sparna.fr/?p=1267</guid>
		<description><![CDATA[<p>Markdown (MD) has become the de facto standard syntax for writing on the web, pushed by Github and StackOverflow. It is heavily used everytime one need to enter a comment, or write a simple (document-style) HTML page. What if we could embed semantic annotations in a markdown document ? We would get Semantic Markdown !&#8230;</p>
<p>Cet article <a rel="nofollow" href="https://blog.sparna.fr/2020/02/20/semantic-markdown/">Semantic Markdown Specifications</a> est apparu en premier sur <a rel="nofollow" href="https://blog.sparna.fr">Sparna Blog</a>.</p>
]]></description>
				<content:encoded><![CDATA[<p>Markdown (MD) has become the de facto standard syntax for writing on the web, pushed by <a href="http://github.com">Github</a> and <a href="http://stackoverflow.com">StackOverflow</a>. It is heavily used everytime one need to enter a comment, or write a simple (document-style) HTML page. What if we could embed semantic annotations in a markdown document ? We would get <strong>Semantic Markdown</strong> ! imagine the best of both worlds between <em>human readable/writable documents and machine-readable/writable (RDF) structured data</em>. We could feed an RDF knowledge graph that is coupled with our set of MD documents, and we would have an <em>easy way to put structure in content</em>.</p>
<p>I see a lot of potential in this, and already see some use-cases. Unfortunately I don&rsquo;t have the bandwith, nor the full skills to make this happens. So I am just writing this in the hope that the idea is implemented by someone, or that someone tells me it is totally nonsense&#8230;</p>
<p>Here are the semantic annotations use-cases I see with such a Semantic Markdown :</p>
<ol>
<li>Annotate a span or title that corresponds to an entity ;</li>
<li>Annotate a piece of text with an existing URI for an entity;</li>
<li>Create some statements on an entity;</li>
</ol>
<p>Note that I am not necessarily looking for a way to produce RDFa annotations on the generated HTML, although that would be nice for a schema.org use-case. Any conversion route from the original semantically annotated markdown to a set of triples would be fine.</p>
<p>My source of inspiration is essentially <a href="https://kramdown.gettalong.org/syntax.html#span-ials">Span Inline Attribute Lists&nbsp;&raquo; from the Kramdown syntax</a>.</p>
<h2>Annotate a span that corresponds to an entity</h2>
<p>This piece of Semantic Markdown :</p>
<pre>Tomorrow I am travelling to _Berlin_ {.schema:Place}</pre>
<p>When interprered by a Semantic Markdown parser would produce this set of triples :</p>
<pre>_:1 a &lt;http://schema.org/Place&gt; .
_:1 rdfs:label “Berlin” .</pre>
<p>The span immediately preceding the &laquo;&nbsp;{.xxxx}&nbsp;&raquo; annotation is taken as the label of the entity. The use of rdfs:label to store the label of the entity could be subject to a parser configuration option.</p>
<p>One could imagine that a semantic markdown parser relies on the same <a href="https://www.w3.org/2011/rdfa-context/rdfa-1.1">RDFa Initial Context</a> to interpret the &laquo;&nbsp;schema:&nbsp;&raquo; prefix without further declaration. But what about other ontologies ? we would need some kind of prefixes / vocab declaration somewhere in the document, just like in RDFa.</p>
<p>Note also that Markdown parser supporting the &laquo;&nbsp;{.xxxxx}&nbsp;&raquo; syntax will also insert this value as a CSS class on the corresponding span, so we win both on the CSS level and the semantic level.</p>
<h2>Annotate a title</h2>
<p>Similarly, we could annotate a title</p>
<pre>### European Semantic Web Conference {.schema:Event}
Lorem ipsum...</pre>
<p>In that case, the full content of the title is interpreted as the label of the entity :</p>
<pre>_:1 a &lt;http://schema.org/Event&gt; .
_:1 rdfs:label “European Semantic Web Conference” .</pre>
<h2>Annotate with a known URI</h2>
<pre>Tomorrow I am travelling to [Berlin](https://www.wikidata.org/wiki/Q64) {.schema:Place}</pre>
<p>Would yield</p>
<pre>&lt;https://www.wikidata.org/wiki/Q64&gt; a &lt;http://schema.org/Place&gt; .
&lt;https://www.wikidata.org/wiki/Q64&gt; rdfs:label “Berlin” .</pre>
<h2>Describe an entity</h2>
<p>If a list follows an annotated entity, then it should be interpreted as a set of predicates with this entity as subject :</p>
<pre>### Specifications Meeting {.schema:Event}

* Date : _11/10_{.schema:startDate}
* Place {.schema:location} : Our office, Street name, 75014 Paris
* Meeting participants : 
  {.schema:attendee}
  * Thomas Francart{.schema:Person}
  * [Someone else](https://www.wikidata.org/wiki/Q80)
  * Tim Foo
* Description : Some information not annotated

### titre suivant
Lorem ipsum...
</pre>
<p>Should yield :</p>
<pre>_:1 a &lt;http://schema.org/Event&gt; .
_:1 rdfs:label “Specifications Meeting” .
_:1 &lt;http://schema.org/startDate&gt; "11/10" .
_:1 &lt;http://schema.org/location&gt; "Our office, Street name, 75014 Paris" .
_:1 &lt;http://schema.org/attendee&gt; _:2 , &lt;https://www.wikidata.org/wiki/Q80&gt;, _:3 .

# attendee that is annotated : we know a type and a name
_:2 a &lt;http://schema.org/Person&gt;
_:2 rdfs:label “Thomas Francart” .

# attendee that is annotated with a URI : we keep the URI and add a label to it (?)
&lt;https://www.wikidata.org/wiki/Q80&gt; rdfs:label "Someone else" .

# attendee that is not annotated - but we know he was an attendee
_:3 rdfs:label "Tim Foo" .
</pre>
<ol>
<li>If a list follows a title or a paragraph that contains an annotated entity&#8230;</li>
<li>Then items in this list correspond to a property of this entity&#8230;</li>
<li>And can be annotated with a property</li>
<li>The property annotation can be placed on an inline text, or right before or after a `:` or `=` character</li>
<li>If the property annotation immediatly precedes a list, then all items in this list would be considered values for that property, and in that case could be either : entities annotated with a type, or entities identified by a URI, or entites not annotated (and in that case we would consider them as blank nodes with only a label</li>
</ol>
<h2>Related works</h2>
<p><a href="https://blogs.pjjk.net/phil/metadata-for-markdown-mkdocs/">Metadata for Markdown</a>, a Python extension to generated JSON-LD from YAML section in a Markdown document.</p>
<p><strong>EDIT</strong> : PanDoc divs and spans : <a href="https://pandoc.org/MANUAL.html#divs-and-spans">https://pandoc.org/MANUAL.html#divs-and-spans</a></p>
<p>I like the &lt;span&gt; syntax :</p>
<p><code>[This is *some text*]{.class key="val"}</code></p>
<p>This is close ! but still would not produce triples, unless one writes explicitely RDFa :</p>
<p><code>My name is [Thomas Francart]{typeof="schema:Person"}</code></p>
<p>Cet article <a rel="nofollow" href="https://blog.sparna.fr/2020/02/20/semantic-markdown/">Semantic Markdown Specifications</a> est apparu en premier sur <a rel="nofollow" href="https://blog.sparna.fr">Sparna Blog</a>.</p>
]]></content:encoded>
			<wfw:commentRss>https://blog.sparna.fr/2020/02/20/semantic-markdown/feed/</wfw:commentRss>
		<slash:comments>15</slash:comments>
		</item>
		<item>
		<title>Des articles enrichis grâce au web de données (DBpedia, Isidore)</title>
		<link>https://blog.sparna.fr/2013/03/22/articles-enrichis-web-de-donnees-dbpedia-isidore/</link>
		<comments>https://blog.sparna.fr/2013/03/22/articles-enrichis-web-de-donnees-dbpedia-isidore/#comments</comments>
		<pubDate>Fri, 22 Mar 2013 09:21:55 +0000</pubDate>
		<dc:creator><![CDATA[Thomas Francart]]></dc:creator>
				<category><![CDATA[Linked Data]]></category>
		<category><![CDATA[RDF]]></category>
		<category><![CDATA[SPARQL]]></category>
		<category><![CDATA[Annotation]]></category>
		<category><![CDATA[DBpedia]]></category>
		<category><![CDATA[Isidore]]></category>
		<category><![CDATA[labs]]></category>
		<category><![CDATA[métadonnées]]></category>
		<category><![CDATA[presse]]></category>
		<category><![CDATA[rdfa]]></category>
		<category><![CDATA[web de données]]></category>

		<guid isPermaLink="false">http://blog.sparna.fr/?p=320</guid>
		<description><![CDATA[<p>(english summary scroll down) Je continue à creuser le sillon entamé précédemment de démos simples et réutilisables de ce que peuvent apporter les données disponibles sur le web pour enrichir un texte, sans infrastructure compliquée. Pour cela je vous invite à entrer dans le laboratoire de sparna.fr ! http://labs.sparna.fr sera un terrain de jeu qui hébergera&#8230;</p>
<p>Cet article <a rel="nofollow" href="https://blog.sparna.fr/2013/03/22/articles-enrichis-web-de-donnees-dbpedia-isidore/">Des articles enrichis grâce au web de données (DBpedia, Isidore)</a> est apparu en premier sur <a rel="nofollow" href="https://blog.sparna.fr">Sparna Blog</a>.</p>
]]></description>
				<content:encoded><![CDATA[<p style="text-align: justify;"><span style="font-size: x-small;"><em>(english summary scroll down)</em></span></p>
<p style="text-align: justify;">Je continue à creuser <a title="Démo de l’utilisation de RDFa &amp; SPARQL pour enrichir une page HTML" href="http://blog.sparna.fr/demo-utilisation-de-rdfa-sparql-pour-enrichir-une-page-html/" target="_blank">le sillon entamé précédemment</a> de démos simples et réutilisables de ce que peuvent apporter les données disponibles sur le web pour enrichir un texte, sans infrastructure compliquée. Pour cela je vous invite à entrer dans <a href="http://labs.sparna.fr" target="_blank">le laboratoire de sparna.fr</a> ! <strong><a href="http://labs.sparna.fr" target="_blank">http://labs.sparna.fr</a></strong> sera un terrain de jeu qui hébergera dans le futur d&rsquo;autres applications et illustrations des technologies du web de données et de l&rsquo;open data, &laquo;&nbsp;so stay tuned&nbsp;&raquo; !</p>
<p style="text-align: justify;">Mais revenons à la démo, ou aux démos puisqu&rsquo;il s&rsquo;agit de 2 pages :</p>
<ul style="text-align: justify;">
<li>la <strong><a href="http://labs.sparna.fr/isidore-enrichissement-article.html" target="_blank">première page de démo</a></strong> est un article scientifique en français enrichi grâce aux données de la base <a href="http://rechercheisidore.fr" target="_blank">Isidore;</a></li>
<li>la <strong><a href="http://labs.sparna.fr/dbpedia-enrich-news-article.html" target="_blank">seconde</a></strong> est un article de presse en anglais enrichi grâce aux données de <a href="http://dbpedia.org" target="_blank">DBpedia</a>.</li>
</ul>
<p style="text-align: justify;"><span id="more-320"></span></p>
<p style="text-align: justify;">Qu&rsquo;est-ce qu&rsquo;elles illustrent ?</p>
<ol style="text-align: justify;">
<li>La <strong>génération du contenu</strong> d&rsquo;une partie du contenu à partir des données du web : ici, la <a href="http://labs.sparna.fr/isidore-enrichissement-article.html#articles" target="_blank">génération automatique de la liste des articles du même auteur</a> dans la page Isidore;</li>
<li><strong>L&rsquo;affichage d&rsquo;informations contextuelles</strong> lorsqu&rsquo;on clique sur un élément annoté dans le texte : dans le cas de l&rsquo;article scientifique, on va chercher sur Isidore, dans le cas de la news, sur DBpedia, mais le principe est le même : on affiche un encart avec titre, photo, définition ou description et un lien vers une page plus complète;</li>
<li>Dans la <a href="http://labs.sparna.fr/dbpedia-enrich-news-article.html" target="_blank">démo DBpedia</a>, la <strong>l&rsquo;affichage sur une carte des noms de lieux mentionnés dans le texte</strong> : les noms des villes, régions ou pays sont marqués avec un identifiant DBpedia, et on va récupérer dynamiquement l&rsquo;information de positionnement dans DBpedia, pour afficher un marqueur sur la carte; la carte et le texte sont synchronisés, quand on passe la souris sur un lieu géographique dans le texte, le marqueur correspondant sur la carte se met en surbrillance, et inversement;</li>
<li>Dans la <a href="http://labs.sparna.fr/isidore-enrichissement-article.html" target="_blank">démo Isidore</a>, la <strong>navigation dans les termes des thesaurus</strong>; certains mots du texte dans l&rsquo;article (&laquo;&nbsp;habitat&nbsp;&raquo;, &laquo;&nbsp;XVIIIe siècle&nbsp;&raquo;, etc.) renvoient vers les concepts abstraits d&rsquo;un thesaurus; on récupère alors les notions plus génériques et plus spécifiques de cette notion, qui seront elles-mêmes cliquables et permettent donc de naviguer dans la hiérarchie des terminologies associées à l&rsquo;article;</li>
<li>Dans le <a href="http://labs.sparna.fr/dbpedia-enrich-news-article.html" target="_blank">démo DBpedia</a>, la possibilité d&rsquo;<strong>afficher les informations dans plusieurs langues</strong>, simplement en changeant un paramètre de la page : essayez <a href="http://labs.sparna.fr/dbpedia-enrich-news-article.html?lang=fr" target="_blank">en français</a>, <a href="http://labs.sparna.fr/dbpedia-enrich-news-article.html?lang=ru" target="_blank">en russe</a>, <a href="http://labs.sparna.fr/dbpedia-enrich-news-article.html?lang=nl" target="_blank">en néerlandais</a>, etc. vous avez compris l&rsquo;idée, il suffit de changer le paramètre de langue dans l&rsquo;adresse de la page;</li>
<li>Enfin, tout cela illustre <strong>l&rsquo;interrogation de bases SPARQL directement depuis les pages HTML</strong>, sans infrastructure serveur, puisque les requêtes sont envoyées en utilisant JSONP depuis du javascript; A noter que cela demande que le endpoint SPARQL supporte le <a href="http://en.wikipedia.org/wiki/JSONP">JSONP</a>; c&rsquo;est le cas de Virtuoso qui est utilisé pour DBpedia et Isidore; Sesame le supportera dans sa prochaine version.</li>
</ol>
<p style="text-align: justify;">Que peut-on imaginer à partir de ça ? Plusieurs idées :</p>
<ul style="text-align: justify;">
<li>se brancher derrière un annotateur automatique qui mettrait les annotations automatiquement (type <a href="http://dbpedia-spotlight.github.com/demo/">DBpedia Spotlight</a>), pour présenter une interface de navigation enrichie à partir de n&rsquo;importe quel texte;</li>
<li>imaginer une interface de navigation dans des thesaurus <a href="http://www.w3.org/TR/2009/REC-skos-reference-20090818/">SKOS</a> que l&rsquo;on pourrait &laquo;&nbsp;brancher&nbsp;&raquo; sur n&rsquo;importe quelle source de données contenant du SKOS pour naviguer dans des terminologies;</li>
</ul>
<p style="text-align: justify;"><strong>Vos idées et vos cas d&rsquo;usage sont les bienvenus ! n&rsquo;hésitez pas à montrer ces pages comme des démos ou à les récupérer et les adapter avec votre propre contenu !</strong></p>
<hr />
<p style="text-align: justify;">English summary :</p>
<p style="text-align: justify;">I have launched <a href="http://labs.sparna.fr">http://labs.sparna.fr</a> and I am presenting 2 demos of articles augmented with linked data :</p>
<ul style="text-align: justify;">
<li>the first one is a <a href="http://labs.sparna.fr/dbpedia-enrich-news-article.html">demo of a news article in english augmented with DBpedia data</a>;</li>
<li>the second one is a <a href="http://labs.sparna.fr/isidore-enrichissement-article.html">demo of a scientific article in french augmented with data from Isidore</a> (<a href="http://rechercheisidore.fr">Isidore</a> is a data repository containing humanities articles metadata and classification thesaurii);</li>
</ul>
<p style="text-align: justify;">These pages illustrate :</p>
<ul style="text-align: justify;">
<li>How you can <strong>generate part of the content dynamically from the web of data</strong> : the <a href="http://labs.sparna.fr/isidore-enrichissement-article.html#articles">list of articles from the same author in the Isidore demo</a> is fetched dynamically when the page loads;</li>
<li>How you can pull and <strong>display contextual information</strong> besides the text, in an &laquo;&nbsp;infobox&nbsp;&raquo;, when the reader clicks an underlined word;</li>
<li>How you can fetch geographic coordinates from DBpedia to <strong>automatically plot the locations mentionned in the text on a map</strong> (provided they have been &laquo;&nbsp;tagged&nbsp;&raquo; with a DBpedia identifier), in the <a href="http://labs.sparna.fr/dbpedia-enrich-news-article.html">DBpedia demo</a>;</li>
<li>How you can <strong>navigate thesaurus terms</strong> in the <a href="http://labs.sparna.fr/isidore-enrichissement-article.html">Isidore demo</a> : some words correspond to thesaurus concepts (&laquo;&nbsp;habitat&nbsp;&raquo;, &laquo;&nbsp;XVIIIe siècle&nbsp;&raquo;), thus generic and specific concepts are displayed in the infobox;</li>
<li>That the <strong>data in DBpedia can be fecthed in diferent languages to adapt to the reader&rsquo;s language</strong> : try to load the DBpedia demo <a href="http://labs.sparna.fr/dbpedia-enrich-news-article.html?lang=fr">in french</a>, <a href="http://labs.sparna.fr/dbpedia-enrich-news-article.html?lang=ru">in russian</a>, <a href="http://labs.sparna.fr/dbpedia-enrich-news-article.html?lang=nl">in dutch</a>&#8230; and try playing with the 2-letter language code in the URLs to display other languages;</li>
<li>How <strong>SPARQL queries can be executed directly from within an HTML page without requiring any server infrastructure</strong>, provided the SPARQL endpoint supports JSONP;</li>
</ul>
<p style="text-align: justify;"><strong>Don&rsquo;t hesitate to save the webpages and adapt them with your own annotated content, and drop me a note if you have other use-cases in mind !</strong></p>
<p>Cet article <a rel="nofollow" href="https://blog.sparna.fr/2013/03/22/articles-enrichis-web-de-donnees-dbpedia-isidore/">Des articles enrichis grâce au web de données (DBpedia, Isidore)</a> est apparu en premier sur <a rel="nofollow" href="https://blog.sparna.fr">Sparna Blog</a>.</p>
]]></content:encoded>
			<wfw:commentRss>https://blog.sparna.fr/2013/03/22/articles-enrichis-web-de-donnees-dbpedia-isidore/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>Démo de l&#8217;utilisation de RDFa &amp; SPARQL pour enrichir une page HTML</title>
		<link>https://blog.sparna.fr/2013/02/17/demo-utilisation-de-rdfa-sparql-pour-enrichir-une-page-html/</link>
		<comments>https://blog.sparna.fr/2013/02/17/demo-utilisation-de-rdfa-sparql-pour-enrichir-une-page-html/#comments</comments>
		<pubDate>Sun, 17 Feb 2013 19:39:03 +0000</pubDate>
		<dc:creator><![CDATA[Thomas Francart]]></dc:creator>
				<category><![CDATA[Linked Data]]></category>
		<category><![CDATA[RDF]]></category>
		<category><![CDATA[SPARQL]]></category>
		<category><![CDATA[demo]]></category>
		<category><![CDATA[enrich]]></category>
		<category><![CDATA[enrichir]]></category>
		<category><![CDATA[exemple]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[notice documentaire]]></category>
		<category><![CDATA[rdfa]]></category>
		<category><![CDATA[rdfquery]]></category>
		<category><![CDATA[web of data]]></category>

		<guid isPermaLink="false">http://blog.sparna.fr/?p=268</guid>
		<description><![CDATA[<p>J&#8217;ai mis en ligne une page de démo (assez cool je crois   ) pour illustrer l&#8217;utilisation des données ouvertes pour enrichir une page web ou une notice documentaire. Elle démontre : Quelques cas d&#8217;usage simple des données du web pour enrichir la navigation : montrer des définitions contextuelles, les traductions d&#8217;un mot, et générer&#8230;</p>
<p>Cet article <a rel="nofollow" href="https://blog.sparna.fr/2013/02/17/demo-utilisation-de-rdfa-sparql-pour-enrichir-une-page-html/">Démo de l&rsquo;utilisation de RDFa &#038; SPARQL pour enrichir une page HTML</a> est apparu en premier sur <a rel="nofollow" href="https://blog.sparna.fr">Sparna Blog</a>.</p>
]]></description>
				<content:encoded><![CDATA[<p>J&rsquo;ai mis en ligne une <a href="http://sparna.fr/linked-data-demo.html" target="_blank">page de démo</a> (assez cool je crois <img src="https://blog.sparna.fr/wp-includes/images/smilies/simple-smile.png" alt=":-)" class="wp-smiley" style="height: 1em; max-height: 1em;" />  ) pour illustrer l&rsquo;utilisation des données ouvertes pour enrichir une page web ou une notice documentaire. Elle démontre :</p>
<ul>
<li>Quelques cas d&rsquo;usage simple des données du web pour enrichir la navigation : montrer des définitions contextuelles, les traductions d&rsquo;un mot, et générer une partie du contenu de la page automatiquement à partir du linked data; on pourrait en imaginer plein d&rsquo;autres.</li>
<li>Ensuite montrer que cela ne nécessite pas de traitement côté serveur : tout est dans la page web. Du <a class="zem_slink" title="RDFa" href="http://en.wikipedia.org/wiki/RDFa" rel="wikipedia" target="_blank">RDFa</a>, du <a class="zem_slink" title="SPARQL" href="http://en.wikipedia.org/wiki/SPARQL" rel="wikipedia" target="_blank">SPARQL</a>, du <a href="http://code.google.com/p/rdfquery/">rdfquery</a>, un peu de <a class="zem_slink" title="JSON" href="http://en.wikipedia.org/wiki/JSON" rel="wikipedia" target="_blank">JSON</a>, du JQuery et tout roule;</li>
</ul>
<p>(Got avait fait quelque chose de similaire il y a quelque temps sous la forme d&rsquo;un module Drupal, ca s&rsquo;appelait la &laquo;&nbsp;<a href="http://www.lespetitescases.net/amusons-nous-avec-rdfa">knowledge box</a>&laquo;&nbsp;; mais la box est cassée et ne fonctionne plus).</p>
<p>On notera que les données de cette page de démo viennent du <a href="http://fr.dbpedia.org/">DBPedia francophone</a>. Il faudrait encore enrichir cet exemple pour montrer une utilisation des données de plusieurs sources de données différentes à la fois&#8230; ce sera pour un autre dimanche ! Allez <a href="http://sparna.fr/linked-data-demo.html" target="_blank">faire un tour sur la démo</a> et dites-moi ici si vous avez des questions/commentaires, voire des idées ou projets similaires !</p>
<div class="zemanta-pixie" style="margin-top: 10px; height: 15px;"><img class="zemanta-pixie-img" style="border: none; float: right;" src="http://img.zemanta.com/pixy.gif?x-id=ef8767b7-0fa2-42dd-bc4e-fb6ad4698b5f" alt="" /></div>
<p>Cet article <a rel="nofollow" href="https://blog.sparna.fr/2013/02/17/demo-utilisation-de-rdfa-sparql-pour-enrichir-une-page-html/">Démo de l&rsquo;utilisation de RDFa &#038; SPARQL pour enrichir une page HTML</a> est apparu en premier sur <a rel="nofollow" href="https://blog.sparna.fr">Sparna Blog</a>.</p>
]]></content:encoded>
			<wfw:commentRss>https://blog.sparna.fr/2013/02/17/demo-utilisation-de-rdfa-sparql-pour-enrichir-une-page-html/feed/</wfw:commentRss>
		<slash:comments>21</slash:comments>
		</item>
	</channel>
</rss>
