Personally I’d love it if logseq didn’t have to create the title metadata, but if instead by default the file name could determine the note’s title
In general removing the need for:
---
title:
---
conflict with other tools
For instance I use gatsby to create my website from .md files.
In gatsby the file name is the name of the URL
example:
Let’s say I’m writing a blogpost on “My Note-taking Journey”
I’d like to call my file name:
notes-journey.md
In my case this would allow gatsby to create the URL for the blogpost in the following way:
https://santiyounger.com/how-to-take-notes
Now gatsby needs me to dermine the title of the blogpost using title in metadata
Example:
---
title: My Note-taking journey
---
This is easy to achieve with regular .md files. However since logseq uses the title: attribute to determine the note’s title. I have a conflict that I have to workaround in annoying ways.
TLDR - Too Long Didn’t Read
I think it’d be better if Logseq could use file names for notes’s title. And remove the title: attribute in metadata to avoid conflicts with other tools.
Thanks!