Re: Generating documentation help

2021-01-19 Thread Tim via Digitalmars-d-learn
On Wednesday, 20 January 2021 at 01:25:28 UTC, Adam D. Ruppe wrote: On Wednesday, 20 January 2021 at 01:00:32 UTC, Tim wrote: But if I deleted index.html then reran the doc gen, it worked just fine. Looks like index.html is not being updated oh yeah i forgot i did that cuz I so often

Re: Generating documentation help

2021-01-19 Thread Adam D. Ruppe via Digitalmars-d-learn
On Wednesday, 20 January 2021 at 01:00:32 UTC, Tim wrote: But if I deleted index.html then reran the doc gen, it worked just fine. Looks like index.html is not being updated oh yeah i forgot i did that cuz I so often build individual files and it deleting the index annoyed me

Re: Generating documentation help

2021-01-19 Thread Tim via Digitalmars-d-learn
On Wednesday, 20 January 2021 at 00:53:54 UTC, Adam D. Ruppe wrote: On Wednesday, 20 January 2021 at 00:16:51 UTC, Tim wrote: They are defined "module simulator" and "module analyzer". I also have "module math" etc. that are added to the index That's weird... There are a bunch of command

Re: Generating documentation help

2021-01-19 Thread Adam D. Ruppe via Digitalmars-d-learn
On Wednesday, 20 January 2021 at 00:16:51 UTC, Tim wrote: They are defined "module simulator" and "module analyzer". I also have "module math" etc. that are added to the index That's weird... There are a bunch of command line args to adrdox that might help like --document-undocumented

Re: Generating documentation help

2021-01-19 Thread Tim via Digitalmars-d-learn
On Wednesday, 20 January 2021 at 00:13:42 UTC, Adam D. Ruppe wrote: On Wednesday, 20 January 2021 at 00:06:35 UTC, Tim wrote: Yeah, they have both. They also contain the main entrypoint What are the module names? If it is like `module foo.main;` it will be listed under `foo` as a submodule

Re: Generating documentation help

2021-01-19 Thread Adam D. Ruppe via Digitalmars-d-learn
On Wednesday, 20 January 2021 at 00:06:35 UTC, Tim wrote: Yeah, they have both. They also contain the main entrypoint What are the module names? If it is like `module foo.main;` it will be listed under `foo` as a submodule rather than top-level since it is all organized by name. (if the

Re: Generating documentation help

2021-01-19 Thread Tim via Digitalmars-d-learn
On Wednesday, 20 January 2021 at 00:03:16 UTC, Adam D. Ruppe wrote: On Tuesday, 19 January 2021 at 23:58:59 UTC, Tim wrote: The main issue is that those scripts aren't being added to index.html Do they have module definitions and doc comments in there somewhere? like here I have all kinds

Re: Generating documentation help

2021-01-19 Thread Adam D. Ruppe via Digitalmars-d-learn
On Tuesday, 19 January 2021 at 23:58:59 UTC, Tim wrote: The main issue is that those scripts aren't being added to index.html Do they have module definitions and doc comments in there somewhere? like here I have all kinds of things http://dpldocs.info/experimental-docs/index.html

Re: Generating documentation help

2021-01-19 Thread Adam D. Ruppe via Digitalmars-d-learn
On Tuesday, 19 January 2021 at 23:51:00 UTC, Tim wrote: I'm creating a u-services based app so my apps need to be documented properly as well. I can get around this by defining them as modules but then adrdox doesn't add them to index.html Well, it does all .d files passed in directories

Re: Generating documentation help

2021-01-19 Thread Tim via Digitalmars-d-learn
On Tuesday, 19 January 2021 at 23:57:21 UTC, Adam D. Ruppe wrote: On Tuesday, 19 January 2021 at 23:51:00 UTC, Tim wrote: I'm creating a u-services based app so my apps need to be documented properly as well. I can get around this by defining them as modules but then adrdox doesn't add them to

Re: Generating documentation help

2021-01-19 Thread Tim via Digitalmars-d-learn
On Sunday, 17 January 2021 at 22:27:13 UTC, Adam D. Ruppe wrote: On Sunday, 17 January 2021 at 21:48:20 UTC, Paul Backus wrote: I recommend using adrdox instead: note you should be able to just dub run adrdox and it will spit out `generated_docs/files...` (assuming i haven't broken that

Re: Generating documentation help

2021-01-17 Thread Adam D. Ruppe via Digitalmars-d-learn
On Sunday, 17 January 2021 at 21:48:20 UTC, Paul Backus wrote: I recommend using adrdox instead: note you should be able to just dub run adrdox and it will spit out `generated_docs/files...` (assuming i haven't broken that recently)

Re: Generating documentation help

2021-01-17 Thread Paul Backus via Digitalmars-d-learn
On Sunday, 17 January 2021 at 21:07:31 UTC, Tim wrote: Hi there, I have a couple of (probably) fairly simple questions. First, when I generate documentation files (-Dd docs) for my project, it also generates documentation for the library Mir. How can I fix the compiler pulling in those docs