A zettelkasten-like note-taking system backed by plain markdown files and symlinks.
Read the README.md for details.
There is no Makefile. Just use standard go commands.
- Run:
go run ./cmd/gonotes - Build:
go build ./cmd/gonotes - Test:
go test -v -p 1 ./... - Vet:
go vet ./... - Format: use gofumpt.
- Google Go Styleguide (itself a superset of Effective Go)
- General spirit of idiomatic Go: keeping it simple and consise.
- All features should be covered by tests.