aboutsummaryrefslogtreecommitdiff
path: root/config.ld
diff options
context:
space:
mode:
Diffstat (limited to 'config.ld')
-rw-r--r--config.ld31
1 files changed, 14 insertions, 17 deletions
diff --git a/config.ld b/config.ld
index 9fc7140..547d473 100644
--- a/config.ld
+++ b/config.ld
@@ -37,7 +37,7 @@ custom_display_name_handler = function(item,default_handler)
for k,v in pairs(item) do
print(k,":",v)
end
- decorators["reqadmin"] = true
+ decorators["reqadmin"] = true
end
end
if item.tags.domain then
@@ -50,20 +50,17 @@ custom_display_name_handler = function(item,default_handler)
return s
end
style = "doc"
-readme = {"README.md"}
-
---[[
-examples = {
- "tutorials/tut000_setup.md",
- "tutorials/tut010_first_addon.md",
- "tutorials/tut020_nrequire.md",
- "tutorials/tut021_detouring.md",
- "tutorials/tut030_inventories.md",
- "tutorials/tut031_metatables.md",
- "tutorials/tut032_more_fields.md",
- "tutorials/tut040_items.md",
- "tutorials/tut041_not_enough_items.md",
- "tutorials/tut042_too_many_items.md",
- "tutorials/tut050_entities.md",
+readme = {
+ "README.md",
+ "./tutorials/tut000_setup.md",
+ "./tutorials/tut010_first_addon.md",
+ "./tutorials/tut020_nrequire.md",
+ "./tutorials/tut021_detouring.md",
+ "./tutorials/tut030_inventories.md",
+ "./tutorials/tut031_metatables.md",
+ "./tutorials/tut032_more_fields.md",
+ "./tutorials/tut040_items.md",
+ "./tutorials/tut041_not_enough_items.md",
+ "./tutorials/tut042_too_many_items.md",
+ "./tutorials/tut050_entities.md",
}
-]]