-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathconfig.ld
25 lines (22 loc) · 918 Bytes
/
config.ld
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
project = "Dev Tools"
title = "DST Mod Dev Tools | LDoc"
description = "mod-dev-tools"
full_description = "Mod for the game [Don\'t Starve Together](https://www.klei.com/games/dont-starve-together) to improve the development/testing experience." .. "\n\n" ..
[[- **Source Code:** [https://github.com/dstmodders/mod-dev-tools](https://github.com/dstmodders/mod-dev-tools)]] .. "\n" ..
[[- **Steam Workshop:** [https://steamcommunity.com/sharedfiles/filedetails/?id=2220506640](https://steamcommunity.com/sharedfiles/filedetails/?id=2220506640)]]
file = {
"./scripts/",
exclude = {
"./scripts/devtools/sdk/",
},
}
dir = "docs"
format = "markdown"
readme = "readme"
sort_modules = true
style = "./docs/ldoc/"
use_markdown_titles = true
custom_see_handler("^MOD_DEV_TOOLS\.(.*)$", function(name)
name = "MOD_DEV_TOOLS." .. name
return name, "../modules/Constants.html#" .. name
end)