You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+5-2Lines changed: 5 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -90,8 +90,11 @@ The configuration file located in `.config/dly/dly.yml` in your home directory i
90
90
| `DailyNotesPath` | yes | string | Path to the LogSeq daily notes (typically the `journal` folder in Logseq data directory)
91
91
|`FilenameFormat`| yes | string | Format of your daily note, without the `.md` extension. The format follows (weird) Go formatting rules, see the [documentation](https://pkg.go.dev/time) or an [article](https://www.geeksforgeeks.org/time-formatting-in-golang/) for details. As a general rule, when you want to say "the current year" and expected something like `YYYY`, you use `2006` (yes, exactly this string). The "current month" is `01` and the "current day" is `02`. Yes this is insane. The default format (in the auto-generated file) is `2006_01_02` - this corresponds today to `2023_01_13` which in turns points to the file `2023_01_13.md`, which **Logseq** interprets as the date 2023-01-13.|
92
92
|`AddTimestamp`| no | bool | Should your line be prefixed with a bolded timestamp? |
93
-
|`AddHashtag`| no | bool | Should a tag be added at the end of your line? (usually to mark lines that were added though `dly`) |
94
-
|`HashtagToAdd`| no | string | The hashtag to add, without `#`|
93
+
|`AppendHashtag`| no | string | add the string as hashtag (example: `from-cli`, note the absence of `#` which will be automatically added) |
94
+
|`AddHashtag`<br>(DEPRECATED) | no | bool | Should a tag be added at the end of your line? (usually to mark lines that were added though `dly`) |
95
+
|`HashtagToAdd`<br>(DEPRECATED) | no | string | The hashtag to add, without `#`|
96
+
97
+
`AddHashtag` and `HashtagToAdd` are deprecated and will be removed in the next major version. having two parameters for a singe, simple feature does not make much sense.
0 commit comments