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

In my case, I have access (introspectively) to a variety of documentation. Right now, I'm writing out "fake" luadoc input files like those included for the Lua standard library, but...

help-wanted

i have 2 module : odbc.ex.Environment and odbc.ex.Connection each of them implement its own class. I wont reference from Environment module to Connection _class_ without specifying whole odbc.ex.Connection.Connection config.ld: ```...

mwe-needed

When a function has a long prototype the function list in the generated API doc looks ugly, because the "summary" columns is forcibly shrunk too much, since the function name...

mwe-needed

I have examples organized into several directories, in increasing order of "difficulty." LDoc faithfully recurses through all of them, but just globally alphabetizes them. It would be nice if the...

help-wanted

Having trouble running ldoc with a config file. I'm able to run using the following command and it generates documentation just fine. ```bash ldoc ./lua/ -d ./lua/doc -f markdown ```...

It seems LDoc behaves differently on macOS & Windows with respect to resolving file references. As an example, my config.ld file contains two files: ``` topics = { 'Info.md' }...

The `--fatalwarnings` command line option does not appear to produce non-zero exit codes for invalid references from one Markdown document to another. I have three files declared in my config.ld:...

Hi, I have a class which has a number of nested tables example: ``` class = { properties = { prop1 = 0, table1 = { subprop1 = "something", subprop2...

bisected, caused by #396. `search_for_token` searches through the file, stopping if it encounters the target token or a `---` comment. if it advances the position, finds a comment, but then...

When I run `ldoc .` a lot of my `docs/**.html` files are modified with just a new "Last Updated" date. I'd like to optionally disable that, and only modify the...