-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathreadme.html
128 lines (108 loc) · 3.29 KB
/
readme.html
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
117
118
119
120
121
122
123
124
125
126
127
128
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<!--
github.com/lafelabs/picrust/README.md
-->
<link href="data:image/x-icon;base64,AAABAAEAEBAQAAEABAAoAQAAFgAAACgAAAAQAAAAIAAAAAEABAAAAAAAgAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAP//AP///wANAP8A5Dz6ABueRwAAt/8A6BonABo86AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAREREREREREREREAAAEREREREQCIgREREd3dwAAB3d3d3d3d3d3d3d3d3d3d3d3d3VVVVVVVQAFVVAAVVVQIiBRAiIBEQIAIBECAAERAgAgFgIABmYCIiBmAiIGZgIiIGYCIgZmYCIAaIAAMzMzAAiIiIiIiIiIiIiIiIiIiIiIgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA" rel="icon" type="image/x-icon" />
<!--Stop Google:-->
<META NAME="robots" CONTENT="noindex,nofollow">
<script src = "https://cdnjs.cloudflare.com/ajax/libs/showdown/1.8.6/showdown.js"></script>
<!-- un comment to use math
<script src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.0/MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script>
<script>
MathJax.Hub.Config({
tex2jax: {
inlineMath: [['$','$'], ['\\(','\\)']],
processEscapes: true,
processClass: "mathjax",
ignoreClass: "no-mathjax"
}
});// MathJax.Hub.Typeset();//tell Mathjax to update the math
</script>
-->
</head>
<body>
<div id = "scrollscroll"></div>
<a id = "editlink" href= "scrolleditor.html">EDIT</a>
<script>
scroll = "";
rawhtml = "";
var converter = new showdown.Converter();
// for more on options see here:
// https://github.com/showdownjs/showdown/wiki/Showdown-Options
converter.setOption('literalMidWordUnderscores', 'true');
converter.setOption('tables', 'true')
filename = "README.md";
loadscroll("README.md");
function loadscroll(scrollname){
filename = scrollname;
document.getElementById("scrollscroll").innerHTML = "";
document.getElementById("scrollscroll").style.display = "block";
var httpc666 = new XMLHttpRequest();
httpc666.onreadystatechange = function() {
if (this.readyState == 4 && this.status == 200) {
scroll = this.responseText;
rawhtml = converter.makeHtml(scroll);
document.getElementById("scrollscroll").innerHTML = rawhtml;
// MathJax.Hub.Typeset();//tell Mathjax to update the math
// MathJax.Hub.Typeset();//tell Mathjax to update the math
}
};
httpc666.open("GET", "fileloader.php?filename=" + scrollname, true);
httpc666.send();
//MathJax.Hub.Typeset();//tell Mathjax to update the math
}
</script>
<style>
body{
overflow:hidden;
}
#scrollscroll{
padding-left:1em;
padding-right:1em;
left:0px;
bottom:0px;
position:absolute;
overflow:scroll;
font-size:2em;
display:none;
z-index:-3;
}
pre{
overflow:scroll;
}
#scrollscroll a{
color:#ff2cb4;
}
#scrollscroll img{
max-width:50%;
display:block;
margin:auto;
background-color:none;
}
h1,h2,h3,h4{
text-align:center;
}
#editlink{
position:absolute;
right:0px;
top:0px;
font-size:2em;
}
@media only screen and (orientation: landscape) {
#scrollscroll{
top:0px;
right:100px;
}
}
@media only screen and (orientation: portrait) {
#scrollscroll{
top:100px;
right:0px;
}
}
</style>
</body>
</html>