forked from kushview/element
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.ld
More file actions
50 lines (47 loc) · 1.01 KB
/
Copy pathconfig.ld
File metadata and controls
50 lines (47 loc) · 1.01 KB
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/element/lua',
'scripts',
'src/engine/MidiPipe.cpp',
exclude = {
'docs/examples',
'libs/element/lua/element.lua'
},
}
examples = {
'docs/examples/helloworld.lua',
'docs/examples/sysex.lua',
'docs/examples/sysexui.lua',
'scripts/amp.lua',
'scripts/ampui.lua',
'scripts/channelize.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
--]]