jsdoc-tsimport-plugin
jsdoc-tsimport-plugin copied to clipboard
Bug for @example
I have an import method inside my class and when I call it inside my jsdoc @example
it gets transformed by the plugin.
I'm not sure if this is expected behaviour but is there a way either disable this or escape the import?
Input:
/**
* Import a track from a local file.
*
* @example
* Track.import("audio.mp3")
* /
Expected output:
Track.import("audio.mp3")
Output:
Track.module:audio.mp3