mirror of
https://github.com/10h30/wordpress-export-to-markdown.git
synced 2026-07-16 13:13:39 +09:00
Add descriptions for all questions, rename some
This commit is contained in:
+2
-2
@@ -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();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user