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 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48
|
-- Settings for ldoc for documenting the API
add_language_extension("cc", "c")
-- LDoc is insane and demands that config.ld be in the root of the lua to be
-- documented
-- Also the order matters here for the table of contents order.
file = {
"../clua.cc",
"../dat/dlua/userbase.lua",
"../l-colour.cc",
"../l-crawl.cc",
"../l-debug.cc",
"../l-dgn.cc",
"../l-dgnbld.cc",
"../l-dgnevt.cc",
"../l-dgngrd.cc",
"../l-dgnit.cc",
"../l-dgnlvl.cc",
"../l-dgnmon.cc",
"../l-dgntil.cc",
"../l-feat.cc",
"../l-file.cc",
"../l-global.cc",
"../l-item.cc",
"../dat/dlua/iter.lua",
"../l-los.cc",
"../dat/dlua/macro.lua",
"../l-mapgrd.cc",
"../l-mapmrk.cc",
"../l-mons.cc",
"../l-moninf.cc",
"../l-option.cc",
"../l-spells.cc",
"../l-subvault.cc",
"../l-travel.cc",
"../l-view.cc",
"../dat/dlua/util.lua",
"../l-wiz.cc",
"../l-you.cc",
"../dat/dlua/init.lua",
}
title = "Crawl Lua API"
project = "crawllua"
sort = true
no_lua_ref = true
merge = true
format = "markdown"
wrap = true
|