Function extractToml
- extract
Toml <T>(text): Extract<T> Type Parameters
Parameters
- text: string
The text to extract TOML front matter from.
Returns Extract<T>
The extracted TOML front matter and body content.
Example: Extract TOML front matter
import { extract } from "@std/front-matter/toml";
import { assertEquals } from "@std/assert";
const output = `---toml
title = "Three dashes marks the spot"
---
Hello, world!`;
const result = extract(output);
assertEquals(result, {
frontMatter: 'title = "Three dashes marks the spot"',
body: "Hello, world!",
attrs: { title: "Three dashes marks the spot" },
});- text: string
Extracts and parses TOML from the metadata of front matter content.