https://github.com/elgopher/noteo
Command line note-taking assistant
https://github.com/elgopher/noteo
cli go markdown memo note-taking notes
Last synced: 6 months ago
JSON representation
Command line note-taking assistant
- Host: GitHub
- URL: https://github.com/elgopher/noteo
- Owner: elgopher
- License: apache-2.0
- Created: 2020-08-20T18:52:25.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2024-01-01T17:07:49.000Z (over 2 years ago)
- Last Synced: 2025-12-14T10:17:52.443Z (7 months ago)
- Topics: cli, go, markdown, memo, note-taking, notes
- Language: Go
- Homepage:
- Size: 9.41 MB
- Stars: 6
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
Noteo is a command line note-taking assistant which can be helpful in all 3 stages of note-taking:
* brainstorming (quickly adding notes)
* reviewing and refining notes (tagging, organizing notes in folders)
* searching for notes (using advanced filtering and sorting)
## Installation
Download the [release archive](https://github.com/elgopher/noteo/releases) and extract the binary to your `bin` folder.
If your OS/arch is not available you can try to build it manually using [Go](https://golang.org/):
```bash
go install github.com/elgopher/noteo
```
## Demo

## File format
Each note is a file in standard [Markdown](https://en.wikipedia.org/wiki/Markdown) format with meta information provided in the beginning of the file in the form of [YAML front matter](https://jekyllrb.com/docs/front-matter/)
```md
---
Created: Sat Sep 5 12:30:05 CEST 2020
Tags: space separated tags
---
Some Markdown content here.
```
Noteo extracts information from this header to filter out and sort notes. Some commands such as `tag set` and `tag rm` may update the header too. If the YAML front matter is missing, Noteo uses default values such as empty `Tags` or `Created` equal to file modification date.
### Tag format
Each tag is a string without whitespaces (space, tab, new line), for example `idea`, `task`
Tag might have a special form of `name:value`, for example `deadline:2020-09-30` or `priority:1`. Value can be a date or integer.