jsdoc-tsimport-plugin icon indicating copy to clipboard operation
jsdoc-tsimport-plugin copied to clipboard

Bug for @example

Open goestav opened this issue 3 years ago • 0 comments

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

goestav avatar Oct 29 '21 18:10 goestav