-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathindex.html
120 lines (106 loc) · 2.55 KB
/
index.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
<html>
<head>
<title>Generate Table of Contents</title>
<meta name="description" content="📜 Generate a Table of Contents from GitHub Markdown or Wiki online." />
<meta name="title" content="Generate Table of Contents" />
<style>
body {
background-color: #f8f8f8;
font-family: sans-serif;
margin: 0;
padding: 0;
}
h1 {
text-align: center;
font-size: 2rem;
margin: 2rem;
}
h2 {
color: red;
text-align: center;
}
p {
text-align: center;
font-size: 1rem;
margin: 1rem;
}
div.container {
margin: 2rem auto;
max-width: 800px;
display: flex;
flex-wrap: wrap;
justify-content: center;
align-items: center;
}
div.column {
height: 500px;
width: 45%;
margin: 1.5%;
background-color: #fff;
box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.3);
border-radius: 5px;
padding: 1rem;
}
textarea {
width: 100%;
border: 3px solid #4caf50;
border-radius: 5px;
padding: 0.5rem;
}
textarea#md {
height: calc(100% - 17px);
font-size: 1rem;
outline: none;
resize: none;
}
textarea#toc {
height: calc(100% - 17px);
font-size: 1rem;
outline: none;
resize: none;
background-color: #f6f5f4;
color: #333;
}
button {
font-size: 1rem;
background-color: #4caf50;
color: #fff;
border: none;
border-radius: 5px;
padding: 1rem 2rem;
margin: 1rem auto;
box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.3);
display: block;
cursor: pointer;
}
@media (max-width: 768px) {
div.column {
width: 100%;
margin: 1rem 0;
}
}
</style>
</head>
<body id="container">
<h1>GitHub TOC generator</h1>
<p>This page can generate your README Table of Contents online.</p>
<div style="display: flex;">
<div class="column">
Paste README here
<textarea id="md" onchange="convert()">
# Paste Your Document In Here
## And a table of contents
will be generated
## On the right
side of this page.
</textarea>
</div>
<div class="column">
Table of contents
<textarea id="toc"></textarea>
</div>
</div>
<p><button onclick="convert()">Generate</button></p>
<script src="bundle.js"></script>
</body>
</html>