Generating HTML documentation using Dox - HaxeFoundation/dox GitHub Wiki

With the XML files in place, everything is ready for the Dox invocation. For this we have to tell it two main things:

  1. Where to find the XMLs by using the -i path argument.
  2. Where to output documentation to using the -o path argument.

Assuming our XML files from step 2 ended up in bin and we want to generate our output to bin/pages, the command would be haxelib run dox -i bin -o bin/pages.

Dox has several command line arguments and prints its usage options by running haxelib run dox without any arguments.

:book: Commandline arguments overview