-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
56 lines (52 loc) · 1.73 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>HTML Firefox Bookmark to CSV</title>
<script type="module">
import { readFile, removeExtension } from './modules/index.js';
document.addEventListener('DOMContentLoaded', (event) => {
const changeFile = () => {
const files = input.files;
for (let i = 0; i < files.length; i++) {
const file = files.item(i);
if (file.type === 'text/html') {
const reader = new FileReader();
reader.fileName = removeExtension(file.name);
reader.addEventListener('load', readFile);
reader.readAsText(file);
} else {
alert("You don't enter a html file");
}
}
};
const input = document.querySelector('input[type=file]');
input.addEventListener('change', changeFile);
});
</script>
</head>
<body>
<h1>
HTML Firefox Bookmark to CSV
<a
href="https://github.com/RodrigoTomeES/html-bookmark-to-csv"
rel="noopener noreferrer"
target="_blank"
>
<img src="./assets/icons/github-brands.svg" width="25" />
</a>
</h1>
<p>
You only need to drag and drop the HTML bookmark in the input or select it
and automatically will be download the bookmark in CSV.
</p>
<p>Later you can import it as table in Notion.</p>
<p>
You can download an example file
<a href="./bookmarks.html" download>here</a>.
</p>
<input type="file" accept=".html" multiple />
</body>
</html>