rnote/README.md

35 lines
977 B
Markdown
Raw Normal View History

2020-11-24 19:13:52 +01:00
# rnote
[![license](https://img.shields.io/badge/licence-GPLv3-blue)](https://framagit.org/fiplox/rpass/-/blob/main/LICENSE)
A minimal note taking cli tool.
## Description
2020-12-01 21:13:35 +01:00
**rnote** creates `Markdown` text files (with permissions set to 600) in a date-named or category-named directories (with permissions set to 700) with a name of a header of the note.
2020-11-24 19:13:52 +01:00
2020-11-27 14:39:02 +01:00
Example:
2020-11-24 19:13:52 +01:00
```
.rnote/
├── 2020-03-20
2020-11-27 14:39:02 +01:00
│   └── Lockdown.md
├── 2020-10-20
│   └── New Lockdown.md
└── shop
└── to buy.md
2020-11-24 19:13:52 +01:00
```
## TODO
2020-11-27 22:21:23 +01:00
- [x] Create a note
- [x] Delete a note
- [x] Modify a note
2020-11-29 18:02:10 +01:00
- [x] Show all notes in a scrollable TextView in a raw terminal with [termimad](https://crates.io/crates/termimad)
2020-11-30 08:42:46 +01:00
- [x] Show all notes from `DATE` or `Category`
2020-11-27 22:21:23 +01:00
- [x] Search a note by header
2020-11-27 23:24:20 +01:00
- [x] Search a note by word (kinda grep)
2020-11-30 09:05:43 +01:00
- [x] List all notes
- [x] List all notes from a `Category`
2020-11-30 17:35:57 +01:00
- [x] Delete all notes (`panic`)
2020-12-03 11:14:29 +01:00
- [x] Delete all notes created at a certain date