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:
- Where to find the XMLs by using the
-i pathargument. - Where to output documentation to using the
-o pathargument.
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.