Skip to main content
Module

x/lume/deps/front_matter.ts>extract

🔥 Static site generator for Deno 🦕
Very Popular
Latest
variable extract
import { extract } from "https://deno.land/x/lume@v2.1.4/deps/front_matter.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" }