mirror of
https://github.com/philips/supernote-obsidian-plugin.git
synced 2026-07-22 09:50:25 +00:00
No description
| supernote-typescript@76c08924be | ||
| .editorconfig | ||
| .eslintignore | ||
| .eslintrc | ||
| .gitignore | ||
| .gitmodules | ||
| .npmrc | ||
| esbuild.config.mjs | ||
| LICENSE | ||
| main.ts | ||
| manifest.json | ||
| package-lock.json | ||
| package.json | ||
| README.md | ||
| styles.css | ||
| tsconfig.json | ||
| version-bump.mjs | ||
| versions.json | ||
Supernote Obsidian Plugin
This plugin generates PNGs for any *.note files found in your Obsidian Vault. The PNGs will be named based on the filename of the note and the page number of the note like so: test.note-0.png, test.note-1.png.
Install via BRAT
- Install the BRAT plugin via Community Plugin Search
- Read the docs
- Add
https://github.com/philips/obsidian-plugin-supernote
Manually installing the plugin
- Copy over
main.js,manifest.jsonto your vaultVaultFolder/.obsidian/plugins/obsidian-plugin-supernote/from https://github.com/philips/obsidian-plugin-supernote/releases.
Thank You
Thank you to Tiemen Schuijbroek for developing the initial supernote Typescript library I forked.
Developer Notes
How to use
- Make sure your NodeJS is at least v16 (
node --version). - Clone this repo.
- Setup the deps
git submodule init
git submodule update
cd supernote-typescript/
npm run build
npm link
cd ..
npm link supernote-typescript/
npm ioryarnto install dependencies.npm run devto start compilation in watch mode.