diff options
author | dvs1 | 2025-03-26 17:37:42 +1000 |
---|---|---|
committer | dvs1 | 2025-03-26 17:37:42 +1000 |
commit | 38d3e06133ec9e58985e105e73e37221eb7c3fc1 (patch) | |
tree | 945e8059eb6e776466bbb2cd8351e10d648232eb | |
parent | realURL stuff. (diff) | |
download | notYetAnotherWiki-38d3e06133ec9e58985e105e73e37221eb7c3fc1.zip notYetAnotherWiki-38d3e06133ec9e58985e105e73e37221eb7c3fc1.tar.gz notYetAnotherWiki-38d3e06133ec9e58985e105e73e37221eb7c3fc1.tar.bz2 notYetAnotherWiki-38d3e06133ec9e58985e105e73e37221eb7c3fc1.tar.xz |
Add a folder icon to folders.
Diffstat (limited to '')
-rwxr-xr-x | notYetAnotherWiki.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/notYetAnotherWiki.lua b/notYetAnotherWiki.lua index c6628fb..f12547a 100755 --- a/notYetAnotherWiki.lua +++ b/notYetAnotherWiki.lua | |||
@@ -830,7 +830,7 @@ for name, file in pairs(Files) do | |||
830 | local pth = file.path | 830 | local pth = file.path |
831 | if '' ~= file.path then pth = file.path .. '/' end | 831 | if '' ~= file.path then pth = file.path .. '/' end |
832 | if 'true' ~= Subs[pth .. f].metadata.hidden then | 832 | if 'true' ~= Subs[pth .. f].metadata.hidden then |
833 | metadata.header = metadata.header .. '<a href="' .. f .. '/' .. whichPage(pth .. f) .. '">' .. f .. '</a> ' | 833 | metadata.header = metadata.header .. '<a href="' .. f .. '/' .. whichPage(pth .. f) .. '">' .. f .. '</a> 📂 ' |
834 | end | 834 | end |
835 | end | 835 | end |
836 | 836 | ||