Skip to content

Commit

Permalink
remove console.log statement
Browse files Browse the repository at this point in the history
  • Loading branch information
abvthecity committed Mar 26, 2024
1 parent 0062f2c commit 8ff2a17
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion packages/ui/app/src/mdx/plugins/rehypeFernCode.ts
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,6 @@ function maybeParseInt(str: string | null | undefined): number | undefined {

export function parseBlockMetaString(element: Element, defaultFallback: string): FernCodeMeta {
let meta: string = unknownToString(element.data?.meta ?? element.properties?.metastring ?? "");
console.log(meta);

const titleMatch = meta.match(/title="([^"]*)"/);
const title = titleMatch?.[1];
Expand Down

0 comments on commit 8ff2a17

Please sign in to comment.