This commit is contained in:
Robert Jelic
2025-02-09 16:08:46 +01:00
parent 56b71bb5e7
commit 1ce873f051
3 changed files with 20 additions and 10 deletions

View File

@@ -42,7 +42,7 @@ jobs:
run: |
# Erstelle config.ld wenn nicht vorhanden
if [ ! -f "config.ld" ]; then
echo 'project="Basalt2"; title="Basalt2 Documentation"; description="A powerful UI Framework for ComputerCraft"; dir="docs"; style="!pale"; format="markdown"; file="src"; all=true; template=true' > config.ld
echo 'project="Basalt2"; title="Basalt2 Documentation"; description="A powerful UI Framework for ComputerCraft"; dir="docs"; style="!pale"; format="markdown"; file="src"; all=true; > config.ld
fi
echo "LDoc Konfiguration:"

View File

@@ -1,9 +1,18 @@
project="Basalt2";
title="Basalt2 Documentation";
description="A powerful UI Framework for ComputerCraft";
dir="docs";
style="!pale";
format="markdown";
file="src";
all=true;
template=true
project = 'Basalt2'
title = 'Basalt2 Documentation'
description = 'A powerful UI Framework for ComputerCraft'
format = 'markdown'
dir = 'docs'
file = {'src'}
style = '!pale'
sort = true
not_luadoc = true
all = true
no_space_before_args = true
wrap = true
custom_tags = {
{'event', 'Events'},
{'param', 'Parameters'},
{'return', 'Returns'},
{'usage', 'Usage'}
}

View File

@@ -112,5 +112,6 @@ function basalt.run(isActive)
end
end
end
basalt.autoUpdate = basalt.run
return basalt