-
Hey everyone, Code for trilium/src/services/date_notes.js Lines 96 to 103 in c881b39 |
Beta Was this translation helpful? Give feedback.
Answered by
Compositr
Sep 10, 2023
Replies: 1 comment 1 reply
-
Here is my suggested addition to the existing docs page: Month patternIt is also possible to customize the title of generated month notes through the
The default is # Month pattern
It is also possible to customize the title of generated month notes through the `#monthPattern` attribute, much like `#datePattern`. The options are:
- `{monthNumberPadded}` results in a number like `09` for September, and `11` for November
- `{month}` results in the full month name (e.g. `September` or `October`)
The default is `{monthNumberPadded} - {month}` |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
zadam
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Here is my suggested addition to the existing docs page:
Month pattern
It is also possible to customize the title of generated month notes through the
#monthPattern
attribute, much like#datePattern
. The options are:{monthNumberPadded}
results in a number like09
for September, and11
for November{month}
results in the full month name (e.g.September
orOctober
)The default is
{monthNumberPadded} - {month}