forked from kushview/element
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.ld
50 lines (47 loc) · 1.04 KB
/
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
project = 'Element'
title = 'Element Lua Documentation'
description = 'Element Lua Documentation'
file = {
'libs/lua-kv/src/kv',
'libs/lua-kv/kv/lua/rectangle.hpp',
'libs/lua-kv/kv/lua/widget.hpp',
'libs/element/lua',
'scripts',
exclude = {
'libs/element/lua/element.lua',
'libs/lua-kv/src/lua-kv.h',
'libs/lua-kv/src/kv/vector.c',
'libs/lua-kv/src/kv/File.cpp'
},
}
examples = {
'scripts/helloworld.lua',
'scripts/amp.lua'
}
dir = 'build/doc/lua'
output = 'index'
merge = true
all = false
add_language_extension ('.hpp', 'c')
---[[
custom_tags = {
{
"property",
title = "Properties",
hidden = false,
format = function (data)
return data .. ""
end
} , {
"kind",
title = "Script Type",
hidden = false,
}
}
custom_display_name_handler = function (item, default_handler)
if item.tags.kind then
return item.name
end
return default_handler (item)
end
--]]