ldoc icon indicating copy to clipboard operation
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...

Results 146 ldoc issues
Sort by recently updated
recently updated
newest added
trafficstars

### Code ``` --- -- A Class Module -- @classmod ClassModule local ClassModule = {} --- Create a new ClassModule -- @return a new ClassModule object function ClassModule.new() return nil...

bug

In a comment with `@usage`, all white-space from right after the double-dash is added to the rendered source code in documentation. This prevents clean copy&paste and also prevents developers from...

Releases 1.4.5 and 1.4.6 are missing.

``` /*** * @file * @ingroup LUA * @module REGISTRY */ ``` Something like this would be nice - but right now it just errors out with unknown tag and...

feature-request

https://github.com/stevedonovan/LDoc/commit/607b5cf4c64309c4c0cbeae000a19da0586ee209 (`globals _G and _VERSION are _tables_`) and Lua disagree with each other: ``` $ lua -e 'print(type(_VERSION))' string ``` I don't think `_VERSION` is a table.

i write a lot of object oriented Lua and i would like for a @module to _pull_ in content from multiple files (i.e., the superclasses). as it stands, with the...

feature-request

builtin/globals.lua is nice, thank you. `@{require}` yields the desired link to the Lua Reference Manual, but I'd like to render the function name "require" inside an HTML code element, so...

help-wanted
feature-request

It just ignores the index number and resolves modifiers in a random order. See [Item.check_tag in doc.lua](https://github.com/stevedonovan/LDoc/blob/2241932602379fb8eb369cebe4929bcd275b45c4/ldoc/doc.lua#L539-L545): ``` lua for m,v in pairs(amod) do local idx = v:match('^%$(%d+)') if idx...

mwe-needed

Running LDoc always leaves a /tmp/ldoc directory, which prevents other users from running ldoc until that directory is manually removed due to `cannot write to /tmp/ldoc` error. LDoc should certainly...

![image](https://cloud.githubusercontent.com/assets/590332/9918359/bbb800a6-5c9c-11e5-9be8-faedc6cfa9e3.png) As you can see, the `usage` tag is adding extra lines to my code block (actual extra lines, not just double-spaced lines). ``` lua -- @usage -- -- Create...