is there a possibility to extend JSDoc with an external docu file? My problem is, by writing all the docu in the .js file, the size grows heavy and thats bad for the readability of the code. I also want to add some examples in the docu. In JSDoc i only find to add links, but thats not what i want.
An example:
/**
*Bla bla bla
*
* para1= ...
*
* {@LINK_TO_EXTERNAL_DOC@}
* {@LINK_TO_EXTERNAL_EXAMPLES@}
*/
By generating the docu, the content of the external files should be "inlined" and printed in the docu without a link.
Thanks