https://github.com/indyandie/sn-export
Export Standard Notes backups to markdown files under their respective tags as directories.
https://github.com/indyandie/sn-export
deno export markdown obsidian standard-note
Last synced: about 2 months ago
JSON representation
Export Standard Notes backups to markdown files under their respective tags as directories.
- Host: GitHub
- URL: https://github.com/indyandie/sn-export
- Owner: Indyandie
- License: mit
- Created: 2025-06-24T02:29:29.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2025-07-21T04:24:14.000Z (11 months ago)
- Last Synced: 2025-08-03T18:10:40.020Z (11 months ago)
- Topics: deno, export, markdown, obsidian, standard-note
- Language: JavaScript
- Homepage:
- Size: 19.5 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# sn-export
[standard-notes]: https://standardnotes.com/
[deno]: https://deno.com/
Export [**Standard Notes**][standard-notes] backups to markdown files under their respective tags as directories.
## Dependencies
- [Standard Notes][standard-notes]
- [Deno][deno]
## User Manual
1. Clone this **repository**.
1. From the **Standard Notes** application
1. Open **preferences** and select the **backups** sidebar
1. Download a backup (Decrypted) of all your text-based data
1. unzip the backup file
1. convert unzipped txt file to json (`data.json`) and move it to the **repository**
1. From the **repository** run `deno task export-data`
1. Profit in `./output/` directory
### Custom File & Output
```shell
deno task export --file '/path/to/backup.json' --output '/path/to/output-directory'
# argument aliases
deno task export -f '/path/to/backup.json' -o '/path/to/output-directory'
```