-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfallow.html
More file actions
74 lines (73 loc) · 2.04 KB
/
fallow.html
File metadata and controls
74 lines (73 loc) · 2.04 KB
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
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Fallow: Javascript Search Optimized Object Notation</title>
</head>
<body>
<div id="jseon">
<dl itemscope itemtype="http://schema.org/Glossary">
<dt>glossary</dt>
<dd itemprop="glossary">
<dl itemscope itemtype="http://schema.org/Title">
<dt>title</dt>
<dd itemprop="title">example glossary</dd>
<dt>GlossDiv</dt>
<dd>
<dl itemscope>
<dt>title</dt>
<dd>S</dd>
<dt>GlossList</dt>
<dd>
<dl itemscope>
<dt>GlossEntry</dt>
<dd>
<dl itemscope>
<dt>ID</dt>
<dd>SGML</dd>
<dt>SortAs</dt>
<dd>SGML</dd>
<dt>GlossTerm</dt>
<dd>Standard Generalized Markup Language</dd>
<dt>Acronym</dt>
<dd>SGML</dd>
<dt>Abbrev</dt>
<dd>ISO 8879:1986</dd>
<dt>GlossDef</dt>
<dd>
<dl itemscope>
<dt>para</dt>
<dd>A meta-markup language used to create markup languages such as DocBook.</dd>
<dt>GlossSeeAlso</dt>
<dd>
<ol itemscope>
<li>GML</li>
<li>XML</li>
</ol>
</dd>
</dl>
</dd>
<dt>GlossSee</dt>
<dd>markup</dd>
</dl>
</dd>
</dl>
</dd>
</dl>
</dd>
</dl>
</dd>
</dl>
</div>
<script src="js/fallow.js" type="text/javascript">
</script>
<script>
var a = new Date();
fallow.farm('jseon');
var b = new Date();
console.log(b-a);
var revive = window.JSON.parse(fallow.harvest.jseon);
console.log(revive);
</script>
</body>
</html>