ddox icon indicating copy to clipboard operation
ddox copied to clipboard

Advanced D documentation engine

Results 71 ddox issues
Sort by recently updated
recently updated
newest added

There have been dependency upgrades, most notably updating OpenSSL from 1.x to 3.x: https://github.com/rejectedsoftware/ddox/compare/v0.16.19...master

I generate structures based on the AWS API specifications from here: https://github.com/aws/aws-sdk-js/tree/master/apis (*.normal.json files) If I generate almost all AWS services docs.json has a size of 20 MB and 641.000...

Some systems are not case-sensitive, and having DDOX emit case-sensitive names means documentation might break on those systems. One example I came across is when uploading documentation to github pages...

Currently dpl-docs on dlang.org run a single-thread. That makes them the bottleneck in time consumption.

The value of enum is quite important and should be displayed in the doc. As an example, consider: https://vibed.org/api/vibe.http.status/HTTPStatus I wanted to return a `400` but use `HTTPStatus`. However, the...

http://dlang.org/phobos-prerelease/std_array.html#.Appender describes 'clear' and 'shrinkTo' methods, but http://dlang.org/library-prerelease/std/array/appender.html don't.

external bug
dlang.org

Manjaro/Arch x86_64, dmd 2.091.0, ddox 0.16.13 fetched and built via dub. My project uses `x:ddoxTool "scod"` for generating documentation and it stopped working at some point recently, perhaps with updates...

```d /// module module app; import std.stdio; version(D_Ddoc) { /// class SomeClass { /// this() {} } /// void someFunction() {} } void main() { writeln("Edit source/app.d to start your...

From https://issues.dlang.org/show_bug.cgi?id=18330 ```d auto auto topN(alias less, SwapStrategy ss = SwapStrategy.unstable, Range) ( Range r, size_t nth ) if (isRandomAccessRange!Range && hasLength!Range && hasSlicing!Range); ``` > It has two autos...

For example, https://dlang.org/library/core/time/msecs.html displays wrongly "alias msecs ;" versus https://dlang.org/phobos/core_time.html#.msecs displays correctly "alias msecs = dur!"msecs".dur;" Phobos doc issue: https://issues.dlang.org/show_bug.cgi?id=19677