From a8cbb18bc14657af13e4d06f18d4bd19cb52dc29 Mon Sep 17 00:00:00 2001 From: dvs1 Date: Sat, 15 Mar 2025 18:37:39 +1000 Subject: Combine the first two columns of the everything page. --- notYetAnotherWiki.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'notYetAnotherWiki.lua') diff --git a/notYetAnotherWiki.lua b/notYetAnotherWiki.lua index 4cf091e..e84e9b0 100755 --- a/notYetAnotherWiki.lua +++ b/notYetAnotherWiki.lua @@ -531,7 +531,7 @@ end -- More of this actually doing things nonsense. -- Create an "everything" page, for URL links to every file.HTML. -local Bdy = '# All the pages\n\n| page | converted | original page | last edited UTC | \n| ---- | --------- | ------- | --------------- | ' +local Bdy = '# All the pages\n\n| page | original page | last edited UTC | \n| --------- | ------- | --------------- | ' Pages = {} for name, file in pairs(Files) do local metadata = derefTable(Files[name].metadata, true) @@ -544,7 +544,7 @@ for name, file in pairs(Files) do if nil ~= metadata.timestamp then ts = metadata.timestamp end if nil ~= file.bit then ln = file.bit end - table.insert(Pages, '\n| ' .. name .. ' | [' .. ln .. '](<' .. name .. '.HTML>) | ' .. fw .. ' ' .. pw .. ' | ' .. ts .. ' |') + table.insert(Pages, '\n| [' .. name .. '](<' .. name .. '.HTML>) | ' .. fw .. ' ' .. pw .. ' | ' .. ts .. ' |') -- Track our external links. if (nil ~= metadata.ogBase) and (nil ~= metadata.ogFile) then -- cgit v1.1