mirror of
https://github.com/denoland/std.git
synced 2024-11-22 04:59:05 +00:00
46 lines
1.3 KiB
TypeScript
46 lines
1.3 KiB
TypeScript
// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
|
|
|
|
import { extractAndParse, type Parser } from "./_shared.ts";
|
|
import { parse, type ParseOptions } from "@std/yaml/parse";
|
|
import type { Extract } from "./types.ts";
|
|
import { EXTRACT_YAML_REGEXP } from "./_formats.ts";
|
|
|
|
export type { Extract };
|
|
|
|
/**
|
|
* Extracts and parses {@link https://yaml.org | YAML} from the metadata of
|
|
* front matter content.
|
|
*
|
|
* @experimental **UNSTABLE**: New API, yet to be vetted.
|
|
*
|
|
* @example Extract YAML front matter
|
|
* ```ts
|
|
* import { extract } from "@std/front-matter/unstable-yaml";
|
|
* import { assertEquals } from "@std/assert";
|
|
*
|
|
* const output = `---yaml
|
|
* date: 2022-01-01
|
|
* ---
|
|
* Hello, world!`;
|
|
* const result = extract(output, { schema: "json" });
|
|
*
|
|
* assertEquals(result, {
|
|
* frontMatter: "date: 2022-01-01",
|
|
* body: "Hello, world!",
|
|
* attrs: { date: "2022-01-01" },
|
|
* });
|
|
* ```
|
|
*
|
|
* @typeParam T The type of the parsed front matter.
|
|
* @param text The text to extract YAML front matter from.
|
|
* @param options The options to pass to `@std/yaml/parse`.
|
|
* @returns The extracted YAML front matter and body content.
|
|
*/
|
|
export function extract<T>(text: string, options?: ParseOptions): Extract<T> {
|
|
return extractAndParse(
|
|
text,
|
|
EXTRACT_YAML_REGEXP,
|
|
((s) => parse(s, options)) as Parser,
|
|
);
|
|
}
|