1
0
Fork 0
mirror of https://github.com/ctruLua/ctruLua.git synced 2025-10-27 16:39:29 +00:00
ctruLua/doc/config.ld
Reuh 0773992b68 Fully documented ctr and ctr.gfx in the C source
The documentation can be built using LDoc : run make build-doc

However, there's still a bunch of things to document.
2015-09-12 13:35:21 +02:00

26 lines
674 B
Text

-- General options
title = "ctrµLua documentation"
project = "ctrµLua"
description = "ctrµLua: Lua homebrewing for 3DS"
not_luadoc = true
-- Generation options
dir = "./html/"
style = "!fixed"
format = "markdown"
plain = true
-- Input files
topics = "../README.md"
file = "../source/"
examples = "../sdcard/3ds/ctruLua/examples/"
manual_url = "file://../libs/lua-5.3.1/doc/manual.html"
-- Custom tags
custom_tags = { { "newonly", hidden = true } }
custom_display_name_handler = function(item, default_handler)
if item.tags.newonly then
return default_handler(item).." <sup><img src=../../newonly.png alt='(N3DS only)'></sup>"
end
return default_handler(item)
end