-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html.bak
More file actions
79 lines (71 loc) · 2.82 KB
/
index.html.bak
File metadata and controls
79 lines (71 loc) · 2.82 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
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="chrome=1">
<title>Playmath by a-boy</title>
<link rel="stylesheet" href="css/styles.css">
<meta name="viewport" content="width=device-width">
<script src="lib/marked.js"></script>
</head>
<body>
<div class="wrapper">
<header>
<h1>Playmath</h1>
<p>a boy's mathematical experiments</p>
<p class="view"><a href="https://github.com/a-boy/playmath">View the Project on GitHub <small>a-boy/playmath</small></a></p>
<ul>
<li><a href="https://github.com/a-boy/playmath/zipball/master">Download <strong>ZIP File</strong></a></li>
<li><a href="https://github.com/a-boy/playmath/tarball/master">Download <strong>TAR Ball</strong></a></li>
<li><a href="https://github.com/a-boy/playmath">View On <strong>GitHub</strong></a></li>
</ul>
</header>
<!-- comment google adsense
<script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
< !-- automatic-size -- >
<ins class="adsbygoogle"
style="display:block"
data-ad-client="ca-pub-9506751992947371"
data-ad-slot="6237817689"
data-ad-format="auto"></ins>
<script>
(adsbygoogle = window.adsbygoogle || []).push({});
</script>
-->
<div>
<input type="text" name="mdfilename" id="mdfilename" value="README.md"><input type="button" value="预览" onclick="preview(document.getElementById('mdfilename').value)">
<div id="preview"></div>
<script>
function preview(url){
var req = new XMLHttpRequest();
req.open("GET", url, true);
//req.responseType="json";
req.onload = function(){
document.getElementById('preview').innerHTML = marked(req.response)
}
req.send(null);
}
preview('README.md');
</script>
</div>
<section>
<h3>playmath - a boy's math exp</h3>
<ul>
<li><date>befor 2018-03-06</date> <a href="stage9-Prime%20gap%20subsequence%20if%20repeats%20twice%20then%20infinitely%20times.nb">stage9-Prime gap subsequence if repeats twice then infinitely times.nb</a> 证明孪生质数猜想,并发掘更普遍的规律:任意质数阶差子序列如果出现了两遍就会继续出现无数遍,如{2},{4},{2*n},{2,4,2},......</li>
<li>...</li>
</ul>
</section>
<footer>
<p>This project is maintained by <a href="https://github.com/a-boy">a-boy</a></p>
</footer>
</div>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-74250909-1', 'auto');
ga('send', 'pageview');
</script>
</body>
</html>