Skip to main content
This release is 4 versions behind 1.0.9 — the latest version of @std/front-matter. Jump to latest

Built and signed on GitHub Actions

Extract front matter from strings

This package works with Cloudflare Workers, Node.js, Deno, Bun, Browsers
This package works with Cloudflare Workers
This package works with Node.js
This package works with Deno
This package works with Bun
This package works with Browsers
JSR Score
88%
Published
7 months ago (1.0.4)
Package root>types.ts
// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license. /** Return type for {@linkcode extract} function. */ export type Extract<T> = { frontMatter: string; body: string; attrs: T; };