obsidian-full-calendar
obsidian-full-calendar copied to clipboard
Add time in note title
Hi!
In first place, thank you for your plugin. It's really useful for me!
In second place, it's my first contribution in Typescript so sorry for my lack of knowledge.
I would like to enable a new setting needed to create an event with the same event title in the same day. It would be just a boolean setting that says "Format note title as <YYYY-MM-DD> <HHDD> <Event title>.md"
Thanks for contributing @jartigag! It seems like this PR is still a work in progress, so I'm converting it to a draft for now. Feel free to mark it as ready for review whenever.
Hi again, @davish! I made it work, but one thing isn't ready yet: the property "timeInNoteTitle" isn't written in data.json... I have to write it manually like this:
{
"calendarSources": [
{
"type": "local",
"color": "hsl( 254, 80%, calc( 68% - 3.8%))",
"directory": "/",
"timeInNoteTitle": true
}
]
...
What is it missing?