This repository has been archived by the owner on Jun 26, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
61 lines (60 loc) · 1.71 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta
name="description"
content="This tool cleans your Anki cards of unnecessary HTML code generated by Notion (through Notion2Anki)."
/>
<link rel="preconnect" href="https://fonts.gstatic.com" />
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Mulish:wght@400;800&display=swap"
/>
<link rel="stylesheet" href="style.scss" />
<title>Notion2Anki Card Cleaner</title>
</head>
<body>
<main>
<h1>Notion2Anki Card Cleaner</h1>
<ul class="tools">
<li>
<button id="clean">Clean</button>
</li>
<li>
<button id="copy">Copy</button>
</li>
<li>
<button id="reset">Reset</button>
</li>
</ul>
<label class="code">
<textarea
id="code-before"
spellcheck="false"
placeholder=" "
></textarea>
<span>Paste your<br />code here...</span>
</label>
<label class="code">
<textarea
id="code-after"
spellcheck="false"
placeholder=" "
></textarea>
<span>Clean code<br />will be here...</span>
</label>
<label class="toggle">
<input
type="checkbox"
id="toggle-theme"
aria-label="Toggle theme (dark/light)"
/>
<span aria-hidden="true"></span>
</label>
</main>
<script src="https://cdnjs.cloudflare.com/ajax/libs/js-beautify/1.13.13/beautify-html.min.js"></script>
<script type="module" src="main.js"></script>
</body>
</html>