-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathconfig.ld
33 lines (29 loc) · 783 Bytes
/
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
-- Meta Data
project = "pico8lib"
title = "pico8lib"
description = "Helpful modules and best-in-class implementations of commonly needed functions and algorithms, from [https://github.com/sparr/pico8lib](https://github.com/sparr/pico8lib)"
readme = "README.md"
-- Output Options
backtick_references = true
all = true
file = {"."}
format = "markdown"
dir = "docs"
ext = "html"
boilerplate = true
template = "!"
ignore = true -- ignore any 'no doc comment or no module' warnings
examples = {
"snippets.p8",
"tests/test_class.p8",
"tests/test_functions.p8",
"tests/test_json.p8",
"tests/test_test.p8",
"examples/",
excludes = {
"snippets.p8",
"boilerplate.p8",
}
}
-- Allow ldoc to process .p8 files as lua
add_language_extension("p8","lua")