mirror of
https://github.com/lifestorm/wnsrc.git
synced 2025-12-16 13:23:46 +03:00
78 lines
2.2 KiB
Plaintext
78 lines
2.2 KiB
Plaintext
|
|
file = {
|
|
"gamemode",
|
|
"plugins",
|
|
"docs/hooks",
|
|
exclude = {"gamemode/core/libs/thirdparty"}
|
|
}
|
|
|
|
module_file = {
|
|
Character = "gamemode/core/meta/sh_character.lua",
|
|
Entity = "gamemode/core/meta/sh_entity.lua",
|
|
Inventory = "gamemode/core/meta/sh_inventory.lua",
|
|
Item = "gamemode/core/meta/sh_item.lua",
|
|
Player = "gamemode/core/meta/sh_player.lua"
|
|
}
|
|
|
|
dir = "docs/html"
|
|
project = "Helix"
|
|
title = "Helix Documentation"
|
|
|
|
no_space_before_args = true
|
|
style = "docs/css"
|
|
template = "docs/templates"
|
|
format = "markdown"
|
|
ignore = true
|
|
topics = "docs/manual"
|
|
use_markdown_titles = true
|
|
kind_names = {module = "Libraries", topic = "Manual"}
|
|
merge = true
|
|
sort = true
|
|
sort_modules = true
|
|
|
|
simple_args_string = true -- we show optionals/defaults outside of the display name
|
|
strip_metamethod_prefix = true -- remove the name of the table when displaying metamethod names
|
|
no_viewed_topic_at_top = true -- don't put the currently viewed topic at the top
|
|
use_new_templates = true -- new templating system
|
|
pretty_urls = true -- avoid showing .html in urls
|
|
pretty_topic_names = true -- strips extension from manual filenames, this does not check filename collisions
|
|
|
|
custom_tags = {
|
|
{"realm", hidden = true},
|
|
{"internal", hidden = true}
|
|
}
|
|
|
|
custom_display_name_handler = function(item, default_handler)
|
|
if (item.type == "function" and item.module) then
|
|
if (item.module.type == "classmod" or item.module.type == "panel") then
|
|
return item.module.mod_name .. ":" .. default_handler(item)
|
|
elseif (item.module.type == "hooks") then
|
|
return item.module.mod_name:upper() .. ":" .. default_handler(item)
|
|
end
|
|
end
|
|
|
|
return default_handler(item)
|
|
end
|
|
|
|
new_type("hooks", "Hooks", true)
|
|
new_type("panel", "Panels", true)
|
|
|
|
-- helix types
|
|
tparam_alias("char", "Character")
|
|
tparam_alias("inventory", "Inventory")
|
|
tparam_alias("item", "Item")
|
|
tparam_alias("ixtype", "ix.type")
|
|
tparam_alias("date", "date")
|
|
|
|
-- standard types
|
|
tparam_alias("string", "string")
|
|
tparam_alias("bool", "boolean")
|
|
tparam_alias("func", "function")
|
|
tparam_alias("player", "Player")
|
|
tparam_alias("entity", "Entity")
|
|
tparam_alias("color", "color")
|
|
tparam_alias("tab", "table")
|
|
tparam_alias("material", "material")
|
|
tparam_alias("vector", "vector")
|
|
tparam_alias("angle", "angle")
|