wasm-frontmatter
TypeScript icon, indicating that this package has built-in type declarations

1.0.1 • Public • Published

wasm-frontmatter

wasm-frontmatter extracts the frontmatter data from markdown.

Tests NPM

Install

$ npm install --save wasm-frontmatter

Use

const {matter} = require('wasm-frontmatter');

const long_markdown = `---
title: "long form content"
description: "Front matter"
categories:
  - "test"
  - "categories"
---

This is content`;

results = matter(long_markdown);

console.log(results.data.title);

Options

options.excerpt

Type: Boolean

Default: false

Extracts an excerpt that directly follows front-matter, or is the first thing in the string if no front-matter exists.

If set to excerpt: true, it will look for the frontmatter delimiter, --- and grab everything leading up to it.

Example

const str = '---\nfoo: bar\n---\nThis is an excerpt.\n---\nThis is content';
const file = matter(str, { excerpt: true });

Results in:

{
  content: 'This is an excerpt.\n---\nThis is content',
  data: { foo: 'bar' },
  excerpt: 'This is an excerpt.\n'
}

options.excerpt_separator

Type: String

Default: ---

Allows for a custom separator to use for excerpts.

Example

const str = '---\nfoo: bar\n---\nThis is an excerpt.\n<!-- end -->\nThis is content';
console.log(matter(str, {excerpt_separator: '<!-- end -->'}));

Results in:

{
  content: 'This is an excerpt.\n<!-- end -->\nThis is content',
  data: { foo: 'bar' },
  excerpt: 'This is an excerpt.\n'
}

options.delimiters

Type: String

Default: ---

Allows for a custom delimiter to define the frontmatter.

Example:

const str = '~~~\nfoo: bar\n~~~\nThis is content';
console.log(matter(str, {delimiter: '~~~'}));

Results in:

{
  content: 'This is content',
  data: { foo: 'bar' },
  excerpt: ''
}

Develop

Modify src/lib.rs and run make build to update the package. Can run tests using the included index.js file. Or write tests and run make test.

Colophon

This package is built using Rust, wasm_bindgen, and wasm-pack. Hoping this finds itself to be fast since it's using wasm, but I don't know. This is very much experimental.

Dependencies (0)

    Dev Dependencies (0)

      Package Sidebar

      Install

      npm i wasm-frontmatter

      Weekly Downloads

      2

      Version

      1.0.1

      License

      MIT

      Unpacked Size

      290 kB

      Total Files

      8

      Last publish

      Collaborators

      • joshfinnie