@cmdlucas/markdown-metadata

1.0.7 • Public • Published

Markdown Metadata

Build Status

Markdown metadata extractor. Extract metadata from a markdown document.

Installation

Install the latest version with npm or Yarn:

$ npm install @cmdlucas/markdown-metadata
$ yarn add @cmdlucas/markdown-metadata

Usage

In order to be parsed, metadata must be placed at the beginning of the markdown document between two triple dashes. Example:

---
title: Lorem ipsum dolor sit amet
author: Marcus Antonius
keywords: latin, ipsum
---

Vestibulum tortor quam, *feugiat vitae*, ultricies eget, tempor sit amet, ante.

Here's how to parse the metadata:

const metadataParser = require('@cmdlucas/markdown-metadata');

// Assuming source is a string containing the markdown document
const source = '--- title: Lorem...';

// Parse source. Result is a two-property object
const result = metadataParser(source);

// The first property, 'metadata', is the object of parsed metadata. Example:
//
// {
//     'title': 'Lorem ipsum dolor sit amet',
//     'author': 'Marcus Antonius',
//     'keywords': 'latin, ipsum'
// };
result.metadata;

// The second property, 'content', is the document source without metadata. Example:
//
// Vestibulum tortor quam, *feugiat vitae*, ultricies eget, tempor sit amet, ante.
result.content;

Parse Support

Currently, only yaml is supported. Future versions intend to support toml and other popular file configuration formats.

License

Markdown Metadata extractor is licensed under the MIT License. See the LICENSE file for details.

Package Sidebar

Install

npm i @cmdlucas/markdown-metadata

Weekly Downloads

10

Version

1.0.7

License

MIT

Unpacked Size

8.46 kB

Total Files

6

Last publish

Collaborators

  • cmdlucas