Bonjour
Voici le html et RDF :
Sa représentation JSON serait théoriquement :
Il y a un bug.
Le deuxième "text" : "text": " (born August 16, 1954)" est en double avec : "text": "Director :".
Je fixe la les clés à "text" au lieu de "content", car les "text" sont visibles ( en dehors des balises ).
Comment éliminer le doublon ?
Je compte faire une fonction affichant automatiquement les rdf.
Merci beaucoup de votre aide.
Voici le html et RDF :
HTML:
<div itemscope itemtype="https://schema.org/Movie">
<h1 itemprop="name">Avatar</h1>
<span>Director :<span itemprop="director">James Cameron</span> (born August 16, 1954)</span>
<span itemprop="genre">Science fiction</span>
<a href= "../movies/avatar-theatrical-trailer.html" itemprop="trailer">Trailer</a>
</div>
Sa représentation JSON serait théoriquement :
JSON:
{
"children": [
{
"tag": "div",
"itemscope":"",
"itemtype": "https://schema.org/Movie",
"children": [
{
"tag": "h1",
"itemprop":"name",
"text":"Avatar"
},
{
"tag": "span",
"text": "Director :",
"children":
{
"tag": "span",
"itemprop":"director",
"text":"James Cameron"
},
"text": " (born August 16, 1954)"
},
{
"tag": "span",
"itemprop":"genre",
"text":"Science fiction"
},
{
"tag": "a",
"href":"../movies/avatar-theatrical-trailer.html",
"itemprop":"trailer",
"text":"Trailer"
}
]
}
]
}
Il y a un bug.
Le deuxième "text" : "text": " (born August 16, 1954)" est en double avec : "text": "Director :".
Je fixe la les clés à "text" au lieu de "content", car les "text" sont visibles ( en dehors des balises ).
Comment éliminer le doublon ?
Je compte faire une fonction affichant automatiquement les rdf.
Merci beaucoup de votre aide.