mirror of
				https://github.com/ctruLua/ctruLua.git
				synced 2025-10-27 16:39:29 +00:00 
			
		
		
		
	 0773992b68
			
		
	
	
		0773992b68
		
	
	
	
	
		
			
			The documentation can be built using LDoc : run make build-doc However, there's still a bunch of things to document.
		
			
				
	
	
		
			26 lines
		
	
	
	
		
			674 B
		
	
	
	
		
			Text
		
	
	
	
	
	
			
		
		
	
	
			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
 |