mirror of
https://github.com/tembo-pages/tembo-core.git
synced 2025-12-22 05:35:43 +00:00
109 lines
2.0 KiB
Markdown
109 lines
2.0 KiB
Markdown
# Tembo
|
||
|
||
<img
|
||
src="https://raw.githubusercontent.com/tembo-pages/tembo-core/main/assets/tembo_logo.png"
|
||
width="200px"
|
||
/>
|
||
|
||
A simple folder organiser for your work notes.
|
||
|
||

|
||
|
||

|
||

|
||
|
||
## config.yml
|
||
|
||
```yaml
|
||
# time tokens: https://strftime.org
|
||
tembo:
|
||
base_path: ~/tembo
|
||
# template_path: ~/tembo/templates
|
||
scopes:
|
||
- name: scratchpad
|
||
example: tembo new scratchpad
|
||
path: "scratchpad/{d:%B_%Y}"
|
||
filename: "{d:%B_%W}"
|
||
extension: md
|
||
template_filename: scratchpad.md.tpl
|
||
- name: wtodo
|
||
example: tembo new wtodo | directory is month_year, filename is month_week-of-year
|
||
path: "wtodo/{d:%B_%Y}"
|
||
filename: "week_{d:%W}"
|
||
extension: todo
|
||
template_filename: weekly.todo.tpl
|
||
- name: meeting
|
||
example: tembo new meeting $meeting_title
|
||
path: "meetings/{d:%B_%y}"
|
||
filename: "{d:%a_%d_%m_%y}-{input0}"
|
||
extension: md
|
||
template_filename: meeting.md.tpl
|
||
- name: knowledge
|
||
example: tembo new knowledge $project $filename
|
||
path: "knowledge/{input0}"
|
||
filename: "{input1}"
|
||
extension: md
|
||
template_filename: knowledge.md.tpl
|
||
logging:
|
||
level: INFO
|
||
path: ~/tembo/.logs
|
||
```
|
||
|
||
## templates
|
||
|
||
### knowledge
|
||
|
||
```
|
||
---
|
||
created: {d:%d-%m-%Y}
|
||
---
|
||
|
||
# {input0} - {input1}.md
|
||
```
|
||
|
||
### meeting
|
||
|
||
```
|
||
---
|
||
created: {d:%d-%m-%Y}
|
||
---
|
||
|
||
# {d:%A %d %B %Y} - {input0}
|
||
|
||
## People
|
||
|
||
Head:
|
||
|
||
Attendees:
|
||
|
||
## Actions
|
||
|
||
|
||
## Notes
|
||
|
||
```
|
||
|
||
### scratchpad
|
||
|
||
```
|
||
---
|
||
created: {d:%d-%m-%Y}
|
||
---
|
||
|
||
# Scratchpad - Week {d:%W} - {d:%B-%y}
|
||
```
|
||
|
||
### wtodo
|
||
|
||
```
|
||
---
|
||
created: {d:%d-%m-%Y}
|
||
---
|
||
|
||
Weekly TODO | Week {d:%W} {d:%B}-{d:%Y}
|
||
|
||
Work:
|
||
|
||
Documentation:
|
||
```
|