2
2
espelhamento de https://github.com/Hilbis/Hilbish sincronizado 2025-07-18 16:52:02 +00:00

fix: remove index subdoc (resolves #84)

Esse commit está contido em:
TorchedSammy 2021-12-07 16:24:55 -04:00
commit 3421f286f2
Assinado por: sammyette
ID da chave GPG: 904FC49417B44DCD

Ver arquivo

@ -75,7 +75,8 @@ These are the global Hilbish functions that are always available and not part of
return
end
funcdocs = f:read '*a'
local subdocs = table.map(fs.readdir(moddocPath), function(fname)
local moddocs = table.filter(fs.readdir(moddocPath), function(f) return f ~= 'index.txt' end)
local subdocs = table.map(moddocs, function(fname)
return lunacolors.underline(lunacolors.blue(string.gsub(fname, '.txt', '')))
end)
if subdocName == 'index' then