blob: c367b29eadd4ee39f0975d88597d8107d127a92e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
|
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Count Microformats</title>
<meta name="description" content="microformat-shiv - A light-weight cross browser javascript microformats 2 parser" />
<link rel="stylesheet" href="css/testrunner.css">
<link rel="stylesheet" href="css/prettify.css">
<!-- loads Modules to help with debugging ie windows.Modules -->
<script src="../../lib/utilities.js"></script>
<script src="../../lib/domutils.js"></script>
<script src="../../lib/url.js"></script>
<script src="../../lib/html.js"></script>
<script src="../../lib/text.js"></script>
<script src="../../lib/dates.js"></script>
<script src="../../lib/isodate.js"></script>
<script src="../../lib/parser.js"></script>
<script src="../../lib/parser-implied.js"></script>
<script src="../../lib/parser-includes.js"></script>
<script src="../../lib/parser-rels.js"></script>
<script src="../../lib/maps/h-adr.js"></script>
<script src="../../lib/maps/h-card.js"></script>
<script src="../../lib/maps/h-entry.js"></script>
<script src="../../lib/maps/h-event.js"></script>
<script src="../../lib/maps/h-feed.js"></script>
<script src="../../lib/maps/h-geo.js"></script>
<script src="../../lib/maps/h-item.js"></script>
<script src="../../lib/maps/h-listing.js"></script>
<script src="../../lib/maps/h-news.js"></script>
<script src="../../lib/maps/h-org.js"></script>
<script src="../../lib/maps/h-product.js"></script>
<script src="../../lib/maps/h-recipe.js"></script>
<script src="../../lib/maps/h-resume.js"></script>
<script src="../../lib/maps/h-review-aggregate.js"></script>
<script src="../../lib/maps/h-review.js"></script>
<script src="../../lib/maps/rel.js"></script>
<script src="javascript/beautify.js"></script>
<script src="javascript/prettify.js"></script>
<script src="javascript/count.js"></script>
</head>
<body>
<p>microformat-shiv</p>
<h1>Count Microformats</h1>
<p>Type or copy and paste the HTML you want to parse into the box below.</p>
<form id="mf-form" class="tool-interface" method="get" action="">
<p>
<label for="html">HTML</label>
<textarea id="html" name="html"><a class="h-card" href="http://glennjones.net">
<span class="p-given-name">Glenn</span>
<span class="p-family-name">Jones</span>
</a>
<a class="h-card" href="http://janedoe.net">
<span class="p-given-name">Jane</span>
<span class="p-family-name">Doe</span>
</a>
<a class="h-event" href="http://janedoe.net">
<span class="p-name">Event</span>
<span class="dt-start">2015-07-01</span>
</a>
</textarea>
</p>
<input class="button" value="Count" type="submit">
</form>
<h1>Parser JSON</h1>
<div id="parser-json"><pre class="prettyprint"><code class="language-json"></code></pre></div>
</body>
</html>
|