Docs: update config.ld.in
Include more files in order to generate the docs. Signed-off-by: Ignas Anikevicius (gns_ank) <anikevicius@gmail.com>
This commit is contained in:
parent
654b110322
commit
f12feb0e7d
10
config.ld.in
10
config.ld.in
|
@ -11,7 +11,10 @@ dir='doc'
|
||||||
pretty='lua'
|
pretty='lua'
|
||||||
backtick_references=true
|
backtick_references=true
|
||||||
merge=true
|
merge=true
|
||||||
readme='README.md'
|
topics={
|
||||||
|
'README.md',
|
||||||
|
'CONTRIBUTING.md',
|
||||||
|
}
|
||||||
|
|
||||||
-- Setup @client to be an alias for "@tparam client.client"
|
-- Setup @client to be an alias for "@tparam client.client"
|
||||||
tparam_alias('client', 'client.client')
|
tparam_alias('client', 'client.client')
|
||||||
|
@ -19,10 +22,11 @@ tparam_alias('tag', 'tag')
|
||||||
-- Should be default, but is not. Sets up "@tab" => "@tparam table".
|
-- Should be default, but is not. Sets up "@tab" => "@tparam table".
|
||||||
tparam_alias('tab', 'table')
|
tparam_alias('tab', 'table')
|
||||||
|
|
||||||
|
-- file={ 'lib/', '@SOURCE_DIR@/luadoc' }
|
||||||
file = {
|
file = {
|
||||||
'lib/',
|
-- LUA libraries
|
||||||
'luadoc/',
|
'luadoc/',
|
||||||
readme,
|
'lib/',
|
||||||
exclude = {
|
exclude = {
|
||||||
-- exclude these modules, as they do not contain any written
|
-- exclude these modules, as they do not contain any written
|
||||||
-- documentation
|
-- documentation
|
||||||
|
|
Loading…
Reference in New Issue