Super Simple GUI Library

Martin Nowak code at dawg.eu
Tue Jan 2 02:12:24 UTC 2018


On Tuesday, 2 January 2018 at 02:06:00 UTC, Ivan Trombley wrote:
> For now, app.d has an example in the doc comments. I'll be 
> adding more examples to the doc comments.

Generating documentation is as simple as `dub build -b ddox` btw.
See https://github.com/MartinNowak/bloom for an example on how to 
publish them to gh-pages during CI.

Note that the default ddox filter arguments exclude undocumented 
modules.
So you either need to add ddoc comments on the module declarations

```d
/// app module
module ssgl.app;
```

or change `"-ddoxFilterArgs"` to sth. non-default 
https://github.com/dlang/dub/blob/bf095d8018d34ec0bf3d7459f722b67d7ddb804f/source/dub/dub.d#L1142.


More information about the Digitalmars-d-announce mailing list