mihaiconstantin
02/18/2022, 9:34 AMplan.schema.yml
that I use for the journal
entry in
dendron.yml
. When I use the Lookup Bar
(i.e., or the corresponding shortcut)
it creates a journal note and the title
in the yml
front-matter has, as
expected, the full date, i.e.:
yml
id: 0bohCP3PzaKTnRGIDMVeL
title: '2022-02-18'
desc: ''
updated: 1645176234689
created: 1645176234689
However, when I create a note manually via the Lookup Bar
(e.g., typing
plan.2022.02.19
), only the day is used for the title in the front matter (i.e.,
title: '19'
. Is there a way I can manually create such a note
with the full date? I hope this is clear.
This is how my schema looks like (i.e., based on the guide in the wiki).
yml
# The `dendron.yml` file.
# ...
workspace:
# ...
journal:
dailyDomain: daily
name: plan
dateFormat: y.MM.dd
addBehavior: asOwnDomain
# ...
yml
# The `plan.schema.yml` file.
version: 1
imports: []
schemas:
- id: plan
title: Planner
desc: Planner implementing the capture-configure-control system.
parent: root
children: [year]
- id: year
title: Year
pattern: "[0-2][0-9][0-9][0-9]"
template: temp.plan.year
children: [month]
- id: month
title: Month
pattern: "[0-9][0-9]"
template: temp.plan.month
children: [day, days]
- id: day
title: Day
pattern: "[0-3][0-9]"
template: temp.plan.day
- id: days
title: Days
pattern: "[0-3][0-9]-[0-3][0-9]"
template: temp.plan.day