obsidian.nvim icon indicating copy to clipboard operation
obsidian.nvim copied to clipboard

disable_frontmatter not respected for daily notes

Open alloc33 opened this issue 1 year ago • 0 comments

config:

sort_by = "accessed",
disable_frontmatter = true,
workspaces = {
	{
		name = "NSHV",
		path = "/Users/nshv/Library/Mobile Documents/iCloud~md~obsidian/Documents/NSHV",
	},
	{
		name = "Work",
		path = "/Users/nshv/Library/Mobile Documents/iCloud~md~obsidian/Documents/Work",
		overrides = {},
	},
},
new_notes_location = "current_dir",
note_id_func = function(title)
	return title
end,
templates = {
	folder = "Templates",
	date_format = "%Y-%m-%d",
	time_format = "%H:%M",
},
daily_notes = {
	folder = "Journal",
	date_format = "%Y-CW%V",
	alias_format = "%Y-CW%V",
	default_tags = { "weekly-notes" },
	template = "md_drawing_template"
},

:ObsidianToday - new daily note is being created with frontmatter visible.

:ObsidianNewFromTemplate - frontmatter is hidden

alloc33 avatar Oct 04 '24 05:10 alloc33