No description
Find a file
Brandon Philips 83075606fd 1.0.2
2024-03-04 10:13:55 -08:00
supernote-typescript@76c08924be main: add markdown file creation from text recognition 2024-03-04 10:10:31 -08:00
.editorconfig Initial commit 2024-02-27 12:05:03 -08:00
.eslintignore Initial commit 2024-02-27 12:05:03 -08:00
.eslintrc Initial commit 2024-02-27 12:05:03 -08:00
.gitignore Initial commit 2024-02-27 12:05:03 -08:00
.gitmodules initial working commit 2024-03-01 12:42:02 -08:00
.npmrc Initial commit 2024-02-27 12:05:03 -08:00
esbuild.config.mjs initial working commit 2024-03-01 12:42:02 -08:00
LICENSE LICENSE: initial commit 2024-03-01 13:25:09 -08:00
main.ts main: add markdown file creation from text recognition 2024-03-04 10:10:31 -08:00
manifest.json 1.0.2 2024-03-04 10:13:55 -08:00
package-lock.json 1.0.2 2024-03-04 10:13:55 -08:00
package.json 1.0.2 2024-03-04 10:13:55 -08:00
README.md README: add BRAT docs 2024-03-01 13:29:03 -08:00
styles.css Initial commit 2024-02-27 12:05:03 -08:00
tsconfig.json Initial commit 2024-02-27 12:05:03 -08:00
version-bump.mjs Initial commit 2024-02-27 12:05:03 -08:00
versions.json 1.0.2 2024-03-04 10:13:55 -08:00

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

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 i or yarn to install dependencies.
  • npm run dev to start compilation in watch mode.