diff options
author | Thijs Schreijer <thijs@thijsschreijer.nl> | 2023-11-09 23:03:21 +0100 |
---|---|---|
committer | Thijs Schreijer <thijs@thijsschreijer.nl> | 2023-11-15 19:17:57 +0100 |
commit | d45768de3e6f7b28bfecf4d19b192ccac9ce5dc2 (patch) | |
tree | 2d4f86ec87eb87a77f6663924aaaa9286756ce3e /config.ld | |
parent | d4222ce6da2a2d7179fc79f9d0cc65fd6c09a686 (diff) | |
download | luasystem-d45768de3e6f7b28bfecf4d19b192ccac9ce5dc2.tar.gz luasystem-d45768de3e6f7b28bfecf4d19b192ccac9ce5dc2.tar.bz2 luasystem-d45768de3e6f7b28bfecf4d19b192ccac9ce5dc2.zip |
feat(*): add environment variable and random functions
Diffstat (limited to 'config.ld')
-rw-r--r-- | config.ld | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/config.ld b/config.ld new file mode 100644 index 0000000..c13936d --- /dev/null +++ b/config.ld | |||
@@ -0,0 +1,16 @@ | |||
1 | project='Lua-System' | ||
2 | title='Lua-System docs' | ||
3 | description='Platform independent system calls for Lua' | ||
4 | |||
5 | format='markdown' | ||
6 | use_markdown_titles = true | ||
7 | style="./doc_topics/" | ||
8 | |||
9 | file={'./src/', './system/'} | ||
10 | topics={'./doc_topics/', './LICENSE.md', './CHANGELOG.md'} | ||
11 | -- examples = {'./examples'} | ||
12 | |||
13 | dir='docs' | ||
14 | sort=true | ||
15 | sort_modules=true | ||
16 | all=false | ||