Skip to content

Instantly share code, notes, and snippets.

@nafeu
Created February 10, 2021 14:45
Show Gist options
  • Select an option

  • Save nafeu/f4087532601afd2d6eca16b87a19da00 to your computer and use it in GitHub Desktop.

Select an option

Save nafeu/f4087532601afd2d6eca16b87a19da00 to your computer and use it in GitHub Desktop.
/* Step 1: Parse metadata and components from markdown file */
const decoder = new TextDecoder("utf-8");
const fileContent = decoder.decode(Deno.readFileSync(filename));
const components = fileContent.split(COMPONENT_DELIMITER);
const { meta: frontMatter } = Marked.parse(components[FIRST_ITEM_INDEX]);
const { title, styles, favicon } = frontMatter;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment