├── .DS_Store ├── .gitignore ├── Cargo.lock ├── Cargo.toml ├── LICENSE ├── README.md ├── demo ├── demo_1.gif ├── demo_2.gif ├── demo_s_1.png └── demo_s_2.png └── src ├── formatter.rs ├── jot.rs ├── main.rs ├── notion.rs └── util.rs /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harry-027/JotDown/HEAD/.DS_Store -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | .env 3 | .DS_Store -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harry-027/JotDown/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harry-027/JotDown/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harry-027/JotDown/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harry-027/JotDown/HEAD/README.md -------------------------------------------------------------------------------- /demo/demo_1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harry-027/JotDown/HEAD/demo/demo_1.gif -------------------------------------------------------------------------------- /demo/demo_2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harry-027/JotDown/HEAD/demo/demo_2.gif -------------------------------------------------------------------------------- /demo/demo_s_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harry-027/JotDown/HEAD/demo/demo_s_1.png -------------------------------------------------------------------------------- /demo/demo_s_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harry-027/JotDown/HEAD/demo/demo_s_2.png -------------------------------------------------------------------------------- /src/formatter.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harry-027/JotDown/HEAD/src/formatter.rs -------------------------------------------------------------------------------- /src/jot.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harry-027/JotDown/HEAD/src/jot.rs -------------------------------------------------------------------------------- /src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harry-027/JotDown/HEAD/src/main.rs -------------------------------------------------------------------------------- /src/notion.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harry-027/JotDown/HEAD/src/notion.rs -------------------------------------------------------------------------------- /src/util.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harry-027/JotDown/HEAD/src/util.rs --------------------------------------------------------------------------------