This commit is contained in:
Sidharth Vinod 2022-11-28 16:26:10 +05:30
parent bfbb7996e9
commit 3a6dd61f65
No known key found for this signature in database
GPG Key ID: FB5CCD378D3907CD
1 changed files with 0 additions and 2 deletions

View File

@ -9,8 +9,6 @@ try {
export const render = async (id: string, code: string, config: MermaidConfig): Promise<string> => {
mermaid.initialize(config);
// console.log('rendering', id, code);
const svg = await mermaid.renderAsync(id, code);
// console.log('rendered', id, code);
return svg;
};