[VSCode Extension] Looking for something to render mermaid in JSDoc

Title, basically.

Say I have the following JSDoc comment;

/**
 * \`\`\`mermaid
 * graph TD;
 *   A-->B;
 *   A-->C;
 *   B-->D;
 *   C-->D;
 * \`\`\`
 */
const ident = "val";


Does anyone know of a VSCode extension which will change the JSDoc hover-preview such that the mermaid is rendered into a graph rather than simply being syntax highlighted text?
Was this page helpful?