From 3818411cb54b78cfeb6259c6df5fec8a6d1f9a0f Mon Sep 17 00:00:00 2001 From: dvs1 Date: Tue, 14 Jan 2025 11:46:11 +1000 Subject: Fix up whichPage() so they ALL have .HTML. --- notYetAnotherWiki.lua | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/notYetAnotherWiki.lua b/notYetAnotherWiki.lua index 4fd9fa1..0329852 100755 --- a/notYetAnotherWiki.lua +++ b/notYetAnotherWiki.lua @@ -108,16 +108,16 @@ end -- These functions assume the above file and sub scan has completed. -- Which page in this directory should we show? --- NOTE - only looking for the .md files we scanned for before, any stray HTML, html, HTM, atd htm files will get ignored. +-- NOTE - only looking for the .md files we scanned for before, any stray HTML, html, HTM, and htm files will get ignored. local whichPage = function(f) local fl = '' if (nil ~= Subs[f]) and (nil ~= Subs[f].files) then - if 1 == #(Subs[f].files) then fl = Subs[f].files[1] .. '.HTML' else + if 1 == #(Subs[f].files) then fl = Subs[f].files[1] else -- Standard files to search for. for i, v in ipairs{'about', 'readme', 'index', 'homepage', 'mainpage', 'webhome'} do for j, w in ipairs(Subs[f].files) do if v == string.lower(w) then - fl = w .. '.HTML' + fl = w break end end @@ -127,6 +127,7 @@ local whichPage = function(f) if ('' == fl) and (nil ~= Subs[f].files[1]) then fl = Subs[f].files[1] end end end + if '' ~= fl then fl = fl .. '.HTML' end return fl end -- cgit v1.1