-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinstructions.html
81 lines (59 loc) · 2.51 KB
/
instructions.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>SimpleNote to Obsidian Migration tool</title>
<link rel="stylesheet" href="style.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Source+Sans+3:ital,wght@0,200..900;1,200..900&display=swap"
rel="stylesheet">
</head>
<body>
</body>
<div class="page">
<div class="container">
<p>
<a href="/">← Back to Tool</a>
</p>
<h1>Instructions</h1>
<div class="instructions">
<p>
This tool allows you to convert your Simplenote notes to Obsidian format.
</p>
<p>
To use this tool, you need to export your Simplenote notes as a JSON file. You can do this by going to
Simplenote, clicking on the three dots in the top right corner, and selecting "Export Notes". This will
download a JSON file containing all your notes.
</p>
<p>
<small>The notes.json is found under ./source/ from the simplenote export ZIP</small>
</p>
<p>
Once you have the JSON file, you can upload it here by dragging and dropping it into the upload field or
selecting the file from your computer.
</p>
<p>
The tool will convert your Simplenote notes [.txt] to Obsidian format [.MD] and preserve the tags
associated
with each note.
</p>
<p>
After the conversion is complete, you will receive a ZIP file containing all your notes in Obsidian
format. Download and Unzip to get a folder with all your notes.
</p>
<p>
You can then import this folder into Obsidian by Draging and dropping the folder
into the File explorer window
<br><br>
OR
<br><br>
Use your system file browser (e.g. Windows Explorer or Finder on macOS), and move your files directly
into the Obsidian vault folder.
</p>
<p>See: <a href="https://help.obsidian.md/import/markdown">https://help.obsidian.md/import/markdown</a></p>
</div>
</div>
</div>
</html>