mirror of
https://github.com/ctruLua/ctruLua.git
synced 2025-10-27 08:29:31 +00:00
Effectively rendering openfile.lua completely obsolete, which is why it was deleted. filepicker.lua is now way smarter, handles file creation and has a documentation file in LDoc.
26 lines
693 B
Text
26 lines
693 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", "filepicker.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
|