-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhapax-explore.html
More file actions
116 lines (75 loc) · 2.95 KB
/
Copy pathhapax-explore.html
File metadata and controls
116 lines (75 loc) · 2.95 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
<!DOCTYPE html>
<html lang="en-US">
<head>
<title>hapax</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<!--
===============================================================================
EXTERNAL SCRIPTS
===============================================================================
<script src="d3.min.js" charset="utf-8"></script>
<script src="jquery.min.js"></script>
<script src="hapax-tokens.js" charset="utf-8"></script>
-->
<!--
===============================================================================
CSS
===============================================================================
-->
<link rel="stylesheet" type="text/css" href="css/hapax.css">
</head>
<!--
===============================================================================
BODY
===============================================================================
-->
<body style="background-color: #232323; color: #ffffff;">
<!--
===============================================================================
INTERNAL SCRIPTS (except of main script and input script)
===============================================================================
-->
<script src="js/hapax-nodes.js" charset="utf-8"></script>
<script src="js/hapax-chem.js" charset="utf-8"></script>
<script src="js/hapax-phys.js" charset="utf-8"></script>
<script src="js/hapax-aux.js" charset="utf-8"></script>
<script src="js/hapax.js" charset="utf-8"></script>
<script src="js/hapax-mol.js" charset="utf-8"></script>
<!--
===============================================================================
SCRIPT USED AS INPUT
===============================================================================
<script src="9quine.js" charset="utf-8"></script>
<!-- by hand creation of ackermann_2_2.js :
- awk '$1=$1' OFS="\", \"" ORS="\"], \n [\"" ackermann_2_2.mol > ackermann_2_2.js
- added the beginning of 9quine.js
- deleted the end ", \n [\"" and adding "]" then adding the end of 9quine.js
<script src="ackermann_2_2.js" charset="utf-8"></script>
-->
<!--
===============================================================================
MAIN HTML
===============================================================================
-->
<div class="flex" id="allsources"> </div>
<!--
===============================================================================
MAIN SCRIPT
===============================================================================
-->
<script src="js/hapax-explore.js" charset="utf-8"></script>
<!--
===============================================================================
FOOTER
===============================================================================
-->
<br>
<footer>
<p style="padding: 1px 26px;" >
<a rel="license" href="http://creativecommons.org/licenses/by/4.0/"
><img alt="Creative Commons License" style="border-width:2" src="cc-by-4-0.png"/></a>
M. Buliga, version: 12.06.2019 <br>
</p>
</footer>
</body>
</html>