CoolFace
Datasetpublic

basant307/AI_Governance_Project

sourceHugging Faceapache-2.0updated 2mo agoView on Hugging Face
0likes48downloads
preprocess.d.ts12 linesDownload Raw Back to dist
1/**2 * Preprocess the given code by cleaning it up, extracting front matter and directives,3 * cleaning and merging configuration, and removing comments.4 * @param code - The code to preprocess.5 * @returns The object containing the preprocessed code, title, and configuration.6 */7export declare function preprocessDiagram(code: string): {8    code: string;9    title: string | undefined;10    config: import("./config.type.js").MermaidConfig;11};12 
basant307/AI_Governance_Project · CoolFace