-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
36 lines (34 loc) · 1.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
<!DOCTYPE html>
<html>
<head>
<title></title>
<meta charset="UTF-8" />
<meta name="author" content="Joe L." />
<meta property="og:url" content="https://jo3-L.github.io/cc-minifier" />
<meta property="og:title" content="YAGPDB CC Minifier" />
<meta property="og:description" content="Minifier for YAGPDB CCs." />
<meta property="og:type" content="website" />
<meta name="theme-color" content="#DE0D1F" />
<meta name="description" content="YAGPDB CC Minifier." />
<link href="./style.css" rel="stylesheet" />
<script src="https://cdnjs.cloudflare.com/ajax/libs/codemirror/5.32.0/codemirror.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/codemirror/5.38.0/mode/go/go.min.js"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/codemirror/5.32.0/codemirror.min.css" />
<link href="//cdn.jsdelivr.net/npm/@sweetalert2/theme-dark@4/dark.css" rel="stylesheet" />
<script src="//cdn.jsdelivr.net/npm/sweetalert2@11/dist/sweetalert2.min.js"></script>
<link href="http://fonts.googleapis.com/css?family=Roboto" rel="stylesheet" type="text/css" />
</head>
<body>
<script type="module" src="./src/index.js"></script>
<h1>YAGPDB CC Minifier</h1>
<h2>Input</h2>
<textarea id="input"></textarea>
<button id="minify-btn">Minify!</button>
<h2>Output</h2>
<textarea id="output" readonly></textarea>
<footer>
Made by Joe L (<strong>jo3-l#2997</strong> on Discord). MIT License |
<a href="https://github.com/jo3-l/cc-minifier">Source</a>
</footer>
</body>
</html>