You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
timestampPrintWarning("Unknown config field '%s'.", k)
1443
+
timestampPrintWarning("%s: Unknown config field '%s'.", maybeFullPath"config.lua", k)
1444
1444
end
1445
1445
for k in pairs(htaccess or {}) do
1446
-
timestampPrintWarning("Unknown config.htaccess field '%s'.", k)
1446
+
timestampPrintWarning("%s: Unknown config.htaccess field '%s'.", maybeFullPath"config.lua", k)
1447
1447
end
1448
1448
1449
1449
if not isAny(type(site._outputPathFormat), "string","function") then
@@ -1491,7 +1491,7 @@ local function buildWebsite()
1491
1491
1492
1492
-- Final config handling.
1493
1493
for ext, customDataParser in pairs(customDataTextParsers) do
1494
-
-- ext = ext:lower() -- Actually a bad idea! (Until we have a version of isFile() that is case insensitive, that is.)
1494
+
-- ext = ext:lower() -- Actually a bad idea! (Until we have a version of isFile() that is case insensitive, that is. Also, we should probably raise an error if it's not lowercase.)
1495
1495
1496
1496
dataParsers[ext] = customDataParser
1497
1497
dataParserIsBinary[ext] = false
@@ -1502,7 +1502,7 @@ local function buildWebsite()
1502
1502
end
1503
1503
1504
1504
for ext, customDataParser in pairs(customDataBinaryParsers) do
1505
-
-- ext = ext:lower() -- Actually a bad idea! (Until we have a version of isFile() that is case insensitive, that is.)
1505
+
-- ext = ext:lower() -- Actually a bad idea! (Until we have a version of isFile() that is case insensitive, that is. Also, we should probably raise an error if it's not lowercase.)
0 commit comments