aboutsummaryrefslogtreecommitdiff
path: root/config.ld
diff options
context:
space:
mode:
authorAlexander Pickering <alexandermpickering@gmail.com>2017-11-18 02:37:05 -0500
committerAlexander Pickering <alexandermpickering@gmail.com>2017-11-18 02:37:05 -0500
commit8ed7aec95941c0752a0ae21d10594579c39677fb (patch)
treed160fb6d89ec10f863b9d2773d3a14c09978b4ff /config.ld
parent0a490d7d811c682a8d0f5a74840583028f13822a (diff)
downloadartery-8ed7aec95941c0752a0ae21d10594579c39677fb.tar.gz
artery-8ed7aec95941c0752a0ae21d10594579c39677fb.tar.bz2
artery-8ed7aec95941c0752a0ae21d10594579c39677fb.zip
Updates to documentation
* Fixed typos in README * Added Server/Client/Shared kinds to documentation * Documentation now includes readme
Diffstat (limited to 'config.ld')
-rw-r--r--config.ld13
1 files changed, 9 insertions, 4 deletions
diff --git a/config.ld b/config.ld
index 8477cfa..3d69f61 100644
--- a/config.ld
+++ b/config.ld
@@ -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"