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:
I have an import method inside my class and when I call it inside my jsdoc
@exampleit 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:
Expected output:
Output: