mirror of
https://github.com/denoland/std.git
synced 2024-11-21 20:50:22 +00:00
a32c05fe26
Co-authored-by: Asher Gomez <ashersaupingomez@gmail.com>
56 lines
1.7 KiB
TypeScript
56 lines
1.7 KiB
TypeScript
// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
|
|
|
|
import { extractAndParse, type Parser, recognize } from "./_shared.ts";
|
|
import { parse as parseYaml } from "@std/yaml/parse";
|
|
import { parse as parseToml } from "@std/toml/parse";
|
|
import type { Extract } from "./types.ts";
|
|
import type { Format } from "./test.ts";
|
|
import { EXTRACT_REGEXP_MAP } from "./_formats.ts";
|
|
|
|
export type { Extract };
|
|
|
|
function getParserForFormat(format: Format): Parser {
|
|
switch (format) {
|
|
case "yaml":
|
|
return parseYaml as Parser;
|
|
case "toml":
|
|
return parseToml as Parser;
|
|
case "json":
|
|
return JSON.parse;
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Extracts and parses {@link https://yaml.org | YAML}, {@link https://toml.io |
|
|
* TOML}, or {@link https://www.json.org/ | JSON} from the metadata of front
|
|
* matter content, depending on the format.
|
|
*
|
|
* @example
|
|
* ```ts
|
|
* import { extract } from "@std/front-matter/any";
|
|
*
|
|
* 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" }
|
|
* ```
|
|
*
|
|
* @typeParam T The type of the parsed front matter.
|
|
* @param text The text to extract front matter from.
|
|
* @returns The extracted front matter and body content.
|
|
*/
|
|
export function extract<T>(text: string): Extract<T> {
|
|
const formats = [...EXTRACT_REGEXP_MAP.keys()] as Format[];
|
|
const format = recognize(text, formats);
|
|
const regexp = EXTRACT_REGEXP_MAP.get(format) as RegExp;
|
|
const parser = getParserForFormat(format);
|
|
return extractAndParse(text, regexp, parser);
|
|
}
|