Initial import

This commit is contained in:
Jeremy Baxter 2023-06-25 16:47:09 +12:00
commit b124d99c36
155 changed files with 49639 additions and 0 deletions

29
config.ld Normal file
View file

@ -0,0 +1,29 @@
project = "Callisto"
title = "Callisto library documentation"
description = "Callisto - A featureful runtime for Lua 5.4"
full_description = [[
Callisto is a runtime for Lua 5.4 that includes
many useful libraries relating to file manipulation,
processes and signals, networking & sockets,
command-line option parsing, environment
variables and more. It is designed to make
Lua into a general purpose standalone scripting
language, but that doesn't mean you can't embed
it into your own program.
]]
dir = "doc"
format = "markdown"
style = "."
file = {
".",
exclude = {
"external",
"lua-5.4",
"test.lua"
}
}
new_type("setting", "Settings")
-- vi: ft=lua