From c02afa6bbeebf682a6443e126816e73bf3baf9d2 Mon Sep 17 00:00:00 2001 From: iGor milhit Date: Tue, 20 Jun 2023 09:14:17 +0200 Subject: [PATCH] snippets: fix wrong function in md snippets - Replace `get_date` by `get_datetime` in the frontmatter snippets for markdown. Co-Authored-by: iGor milhit --- my_snippets/markdown.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/my_snippets/markdown.lua b/my_snippets/markdown.lua index 2bc47dc..75bfa6c 100644 --- a/my_snippets/markdown.lua +++ b/my_snippets/markdown.lua @@ -97,7 +97,7 @@ return { { i(1, "title"), i(2, "tags"), - f(get_date, {}), + f(get_datetime, {}), f(get_id, {}) } ) @@ -121,7 +121,7 @@ return { ]], { f(get_month_year, {}), - f(get_date, {}), + f(get_datetime, {}), f(get_month, {}) } )