// Copyright 2018-2026 the Deno authors. MIT license. // This module is browser compatible. import { extractFrontMatter } from "./_shared.ts"; import { EXTRACT_JSON_REGEXP } from "./_formats.ts"; import type { Extract } from "./types.ts"; export type { Extract }; /** * Extracts and parses {@link https://www.json.org/ | JSON } from the metadata * of front matter content. * * @example Extract JSON front matter * ```ts * import { extract } from "../front-matter/json.ts"; * import { assertEquals } from "../assert/mod.ts"; * * const output = `---json * { "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" }, * }); * ``` * * @typeParam T The type of the parsed front matter. * @param text The text to extract JSON front matter from. * @returns The extracted JSON front matter and body content. */ export function extract(text: string): Extract { const { frontMatter, body } = extractFrontMatter(text, EXTRACT_JSON_REGEXP); const attrs = (frontMatter ? JSON.parse(frontMatter) : {}) as T; return { frontMatter, body, attrs }; }