Add descriptions for all questions, rename some

This commit is contained in:
Will Boyd
2025-03-06 14:46:06 -05:00
parent 3dc025cc96
commit 428eb0b490
3 changed files with 20 additions and 12 deletions
+2 -2
View File
@@ -87,8 +87,8 @@ async function loadMarkdownFilePromise(post) {
// output unquoted
outputValue = value.toString();
} else if (value instanceof luxon.DateTime) {
if (shared.config.customDateFormatting) {
outputValue = value.toFormat(shared.config.customDateFormatting);
if (shared.config.dateFormat) {
outputValue = value.toFormat(shared.config.dateFormat);
} else {
outputValue = shared.config.includeTimeWithDate ? value.toISO() : value.toISODate();
}