I've been trying to understand why documentation of Babylon.js doesn't get generated as well, while debugging the project I've seen that JsDoc members get populated but I couldn't see any string showing the actual documentation.
As these are entirely new topics to me, I can't really tell but only guess that maybe it's the scdb/TypeScriptAST library you're using that hasn't fully implemented it yet.
Is that correct ? Otherwise, how difficult you think getting the documentation generated as well would be ?
The generation is a mapping that is done manually, the AST does have documentation.
But I have not worked on implementing that feature yet.
I will mark this issue as a feature request.
I've been trying to understand why documentation of Babylon.js doesn't get generated as well, while debugging the project I've seen that
JsDoc
members get populated but I couldn't see any string showing the actual documentation.As these are entirely new topics to me, I can't really tell but only guess that maybe it's the
scdb/TypeScriptAST
library you're using that hasn't fully implemented it yet.Is that correct ? Otherwise, how difficult you think getting the documentation generated as well would be ?
Thanks !