Add option to include startTime in event note filename #371
AnnaKornfeldSimpson
started this conversation in
Feature Requests
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Including the startTime with the date in the file name of each event would be really useful for sorting through the folder explorer view when days have multiple events. Could you please make this option available?
I think this would require adding
${event.startTime.replace(':','')}
between the date and the title in the two spots below. (Thereplace
is necessary because:
are not allowed in filenames.)https://github.com/davish/obsidian-full-calendar/blob/993076f45b3aa633a803a95fdcc68b7f83f555ab/src/models/Event.ts#L10
https://github.com/davish/obsidian-full-calendar/blob/993076f45b3aa633a803a95fdcc68b7f83f555ab/src/models/Event.ts#L12
(Noticed while looking at the code: I believe that the second spot, L12, has an extra
)
at the end of the line.)Thank you for all your work on this very useful plugin!
Beta Was this translation helpful? Give feedback.
All reactions