reorganizes spec cases and fixes a couple few

This commit is contained in:
Jessica Lynn Suttles 2013-02-11 17:17:31 -08:00
parent ed58788884
commit c74ecef194
158 changed files with 46 additions and 42 deletions

View file

@ -0,0 +1,5 @@
<!-- http://microformat2-node.jit.su/h-geo.html -->
<p>On my way to The Bricklayer's Arms
(Geo: <span class="h-geo">51.513458;-0.14812</span>)
</p>

View file

@ -0,0 +1,10 @@
// http://microformat2-node.jit.su/h-geo.html
{
"items": [{
"type": ["h-geo"],
"properties": {
"name": ["51.513458;-0.14812"]
}
}]
}

View file

@ -0,0 +1,7 @@
<!-- http://microformat2-node.jit.su/h-geo.html -->
<p class="h-geo">We are meeting at
<span class="p-name">The Bricklayer's Arms</span>
(Geo: <span class="p-latitude">51.513458</span>:
<span class="p-longitude">-0.14812</span>)
</p>

View file

@ -0,0 +1,12 @@
// http://microformat2-node.jit.su/h-geo.html
{
"items": [{
"type": ["h-geo"],
"properties": {
"name": ["The Bricklayer's Arms"],
"latitude": ["51.513458"],
"longitude": ["-0.14812"]
}
}]
}

View file

@ -0,0 +1,10 @@
<!-- http://microformat2-node.jit.su/h-geo.html -->
<p>My favourite hill in the lakes is
<span class="h-geo">
<span class="p-name">Pen-y-ghent</span>
(Geo: <span class="p-latitude">54.155278</span>,
<span class="p-longitude">-2.249722</span>). It
raises to <span class="p-altitude">694</span>m.
</span>
</p>

View file

@ -0,0 +1,13 @@
// http://microformat2-node.jit.su/h-geo.html
{
"items": [{
"type": ["h-geo"],
"properties": {
"name": ["Pen-y-ghent"],
"latitude": ["54.155278"],
"longitude": ["-2.249722"],
"altitude": ["694"]
}
}]
}

View file

@ -0,0 +1,12 @@
<!-- http://microformat2-node.jit.su/h-geo.html -->
<p>
<span class="h-geo">
<span class="p-latitude">
<span class="value-title" title="51.513458">N 51° 51.345</span>,
</span>
<span class="p-longitude">
<span class="value-title" title="-0.14812">W -0° 14.812</span>
</span>
</span>
</p>

View file

@ -0,0 +1,12 @@
// http://microformat2-node.jit.su/h-geo.html
{
"items": [{
"type": ["h-geo"],
"properties": {
"latitude": ["51.513458"],
"longitude": ["-0.14812"],
"name": ["N 51° 51.345, W -0° 14.812"]
}
}]
}

View file

@ -0,0 +1,12 @@
<!-- http://microformat2-node.jit.su/h-geo.html -->
<p>
<span class="h-geo">The Bricklayer's Arms
<span class="p-latitude">
<span class="value-title" title="51.513458"> </span>
</span>
<span class="p-longitude">
<span class="value-title" title="-0.14812"> </span>
</span>
</span>
</p>

View file

@ -0,0 +1,12 @@
// http://microformat2-node.jit.su/h-geo.html
{
"items": [{
"type": ["h-geo"],
"properties": {
"latitude": ["51.513458"],
"longitude": ["-0.14812"],
"name": ["The Bricklayer's Arms"]
}
}]
}

View file

@ -0,0 +1,6 @@
<!-- http://microformat2-node.jit.su/h-geo.html -->
<p class="h-geo">
<abbr class="p-latitude" title="37.408183">N 37° 24.491</abbr>,
<abbr class="p-longitude" title="-122.13855">W 122° 08.313</abbr>
</p>

View file

@ -0,0 +1,12 @@
// http://microformat2-node.jit.su/h-geo.html
{
"items": [{
"type": ["h-geo"],
"properties": {
"latitude": ["37.408183"],
"longitude": ["-122.13855"],
"name": ["N 37° 24.491, W 122° 08.313"]
}
}]
}