Use ldoc to generate teal type definitions
Go to file
Steve Donovan b87180996d Moonscript: support for modules using with statement; optionally ignore colon as part of an identifier 2013-08-07 09:53:39 +02:00
doc topics are added with nil description 2013-05-27 10:47:55 +02:00
ldoc Moonscript: support for modules using with statement; optionally ignore colon as part of an identifier 2013-08-07 09:53:39 +02:00
tests Default output directory is now 'doc'; annotations were borked and not_luadoc check could blow up 2013-05-15 15:30:47 +02:00
COPYRIGHT a custom styling example 2011-06-13 15:43:28 +02:00
config.ld file={'.'} in config.d caused module name failure; docs->doc 2013-04-13 15:44:27 +02:00
ldoc-1.3.8-2.rockspec replaced scm rockspec with regular rockspec 2013-05-06 15:34:39 +02:00
ldoc-1.3.12-1.rockspec added new rockspec; updated docs; nil-description error triggered by ldoc docs 2013-05-16 11:24:05 +02:00
ldoc.lua support for generating Markdown; basic support for Moonscript 2013-08-05 19:27:42 +02:00
makefile Support DESTDIR for the main makefile's install targets. 2013-01-30 17:10:57 +01:00
readme.md updated 1.3 docs 2012-12-29 11:59:30 +02:00

readme.md

LDoc - A Lua Documentation Tool

Copyright (C) 2011-2012 Steve Donovan.

Rationale

This project grew out of the documentation needs of Penlight (and not always getting satisfaction with LuaDoc) and depends on Penlight itself.(This allowed me to not write a lot of code.)

The API documentation of Penlight is an example of a project using plain LuaDoc markup processed using LDoc.

LDoc is intended to be compatible with LuaDoc and thus follows the pattern set by the various *Doc tools:

--- Summary ends with a period.
-- Some description, can be over several lines.
-- @param p1 first parameter
-- @param p2 second parameter
-- @return a string value
-- @see second_fun
function mod1.first_fun(p1,p2)
end

Tags such as see and usage are supported, and generally the names of functions and modules can be inferred from the code.

LDoc is designed to give better diagnostics: if a @see reference cannot be found, then the line number of the reference is given. LDoc knows about modules which do not use module()

  • this is important since this function has become deprecated in Lua 5.2. And you can avoid having to embed HTML in commments by using Markdown.

LDoc will also work with Lua C extension code, and provides some convenient shortcuts.

An example showing the support for named sections and 'classes' is the Winapi documentation; this is generated from winapi.l.c.

Installation

This is straightforward; the only external dependency is Penlight, which in turn needs LuaFileSystem. These are already present in Lua for Windows, and Penlight is also available through LuaRocks as luarocks install penlight.

Unpack the sources somewhere and make an alias to ldoc.lua on your path. That is, either an excutable script called 'ldoc' like so:

lua /path/to/ldoc/ldoc.lua $*

Or a batch file called 'ldoc.bat':

@echo off
lua \path\to\ldoc\ldoc.lua %*