ldoc
ldoc copied to clipboard
LDoc is a LuaDoc-compatible documentation generator which can also process C extension source. Markdown may be optionally used to render comments, as well as integrated readme documentation and pretty...
I would like to be able to `ldoc -c ./config.ld path/file.lua` and get the exact same `docs/modules/file.html` that I would get if I ran `ldoc .`. This might involve multiple...
Hi, Your installation instructions in the README is incomprehensible. Can you please describe how to install this on Windows? Also, you mention dependencies... ... which can only be installed using...
For classes the generated HTML anchors need to be prefixed 'Class_'. Fixes: https://github.com/lunarmodules/ldoc/issues/413
https://github.com/lunarmodules/ldoc/blame/f91ed4b76bec011a2e76cfe1283877686af8377e/ldoc/doc.lua#L1069 For example, [vis](https://github.com/martanne/vis) uncomments this back: https://github.com/martanne/vis/blob/4970df09cea1e427b36469cc66340906cb5a0cb1/.github/workflows/luadoc.yml#L21 and https://raw.githubusercontent.com/martanne/vis/refs/heads/master/lua/doc/README.md
Ldoc has [Moonscript support](https://lunarmodules.github.io/ldoc/manual/manual.md.html#Moonscript_Support); is there any interest in [Teal](https://github.com/teal-language/tl) support?
Hello. I am trying to document simple lua file with classes, as soon as I try to use the `@class` tag somewhere, for example on this simple file ```lua ---...