diff options
Diffstat (limited to 'config.ld')
| -rw-r--r-- | config.ld | 13 |
1 files changed, 9 insertions, 4 deletions
@@ -12,12 +12,15 @@ file = { } format = 'markdown' sort_modules = true -new_type("domain","Domain") -new_type("concommand","Console commands", false, ...) +new_type("domain","Domain",false) +new_type("concommand","Console commands", false) new_type("metamethod","Meta Methods", false) +new_type("server","Server Modules", true) +new_type("client","Client Modules", true) +new_type("shared","Shared Modules", true) custom_tags = { - {'reqadmin', hidden=false}, - {'domain', hidden=false} + {'reqadmin', hidden=true}, + {'domain', hidden=true} } custom_display_name_handler = function(item,default_handeler) @@ -30,3 +33,5 @@ custom_display_name_handler = function(item,default_handeler) end return default_handeler(item) end + +readme = "README.md" |
