Skip to main content
Module

std/front_matter/any.ts>extract

The Deno Standard Library
Latest
variable extract
import { extract } from "https://deno.land/std@0.224.0/front_matter/any.ts";

Extracts and parses YAML, TOML, or JSON from the metadata of front matter content, depending on the format.

Examples

Example 1

import { extract } from "https://deno.land/std@0.224.0/front_matter/any.ts";

const output = `---json
{
  "title": "Three dashes marks the spot"
}
---
Hello, world!`;
const result = extract(output);

result.frontMatter; // '{\n "title": "Three dashes marks the spot"\n}'
result.body; // "Hello, world!"
result.attrs; // { title: "Three dashes marks the spot" }