dox
dox copied to clipboard
Haxe documentation generator.
Currently the documentation is avaible: https://api.haxe.org/haxe/ds/UnsafeStringMap.html But not the class if you click on View Sources: https://github.com/HaxeFoundation/haxe/blob/4.0.5/std/haxe/ds/UnsafeStringMap.hx It should point to: https://github.com/HaxeFoundation/haxe/blob/development/std/flash/_std/haxe/ds/UnsafeStringMap.hx ?
As discussed on Slack, I think it would be good if there was a way to "embed" the docs for the type of certain arguments visually into the docs for...
 From http://vshaxe.github.io/vscode-extern/vscode/MarkedString.html. Maybe it can't find `EitherType`, but it should at least be able to link-ify `String`?
WeakMap claims to be implemented on all platforms but it's not available in JS target See https://api.haxe.org/haxe/ds/WeakMap.html
Currently, using the `@:dox(hide)` field works only if every platform is compiled with this meta-data. It would be great if `@:dox(hide)` or another meta-field allowed support for logically flagging a...
Looks like `@:forward()` meta for abstract types is currently not supported. http://haxe.org/manual/types-abstract-forward.html
 http://haxefoundation.github.io/hxnodejs/js/node/child_process/ChildProcessEvent.html The source doesn't look too crazy, no mixed indentation or anything like that, so this should probably work ok? ```haxe /** Emitted when: 1. The process could not...
[FileInput](https://api.haxe.org/sys/io/FileInput.html) extends [Input,](https://api.haxe.org/haxe/io/Input.html) but the document doesn't show the list of inherited methods. Works for the other class inheriting from Input.
When creating a custom template, I couldn't find a way to generate custom HTML files based on the project template (for instance, create an additional page that lists all functions...
`MarkdownHandler#processCode()` naively assumes that `field` in `this.field` is a field of the current class. However, it could just as well be from a super class. I think this should be...