aboutsummaryrefslogtreecommitdiff
path: root/config.ld
diff options
context:
space:
mode:
authorAlexander Pickering <alexandermpickering@gmail.com>2018-07-15 19:58:37 -0400
committerAlexander Pickering <alexandermpickering@gmail.com>2018-07-15 19:58:37 -0400
commit6afb70afaeb47b3c421d0a72d0f824d5676427d2 (patch)
tree744940d6b30d1b3fb71f289198e0a11755c0931c /config.ld
parent534103be54a129d8255988fc1e75a21a63c6021f (diff)
downloadartery-6afb70afaeb47b3c421d0a72d0f824d5676427d2.tar.gz
artery-6afb70afaeb47b3c421d0a72d0f824d5676427d2.tar.bz2
artery-6afb70afaeb47b3c421d0a72d0f824d5676427d2.zip
Updated documentation
* Updated logo * Started a file to make custom css * Updated some documentation
Diffstat (limited to 'config.ld')
-rw-r--r--config.ld16
1 files changed, 12 insertions, 4 deletions
diff --git a/config.ld b/config.ld
index 78f49aa..b6337c2 100644
--- a/config.ld
+++ b/config.ld
@@ -13,11 +13,13 @@ file = {
}
format = 'markdown'
sort_modules = true
-new_type("concommand","Console commands", false)
-new_type("metamethod","Meta Methods", false)
+new_type("concommand","Console commands", true)
+new_type("metamethod","Meta Methods", true)
+
new_type("server","Server Modules", true)
new_type("client","Client Modules", true)
new_type("shared","Shared Modules", true)
+
new_type("tutorial","Tutorials",true)
custom_tags = {
{'reqadmin', hidden=false},
@@ -26,6 +28,9 @@ custom_tags = {
custom_display_name_handler = function(item,default_handeler)
if item.type == "concommand" then
if item.tags.reqadmin then
+ for k,v in pairs(item) do
+ print(k,":",v)
+ end
return item.name .. " <em class=\"reqadmin\">Requires Admin</em> "
end
elseif item.type == "domain" then
@@ -39,9 +44,11 @@ custom_display_name_handler = function(item,default_handeler)
end
return default_handeler(item)
end
+style = "doc"
+readme = {"README.md"}
-readme = {
- "README.md",
+--[[
+examples = {
"tutorials/tut000_setup.md",
"tutorials/tut010_first_addon.md",
"tutorials/tut020_nrequire.md",
@@ -54,3 +61,4 @@ readme = {
"tutorials/tut042_too_many_items.md",
"tutorials/tut050_entities.md",
}
+]]