Socket
Book a DemoInstallSign in
Socket

assemble-front-matter

Package Overview
Dependencies
Maintainers
2
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

assemble-front-matter

Utilities for extracting front matter from source files.

latest
Source
npmnpm
Version
0.1.2
Version published
Maintainers
2
Created
Source

assemble-front-matter NPM version Build Status

Utilities for extracting front matter from source files.

Visit Assemble's documentation for many more examples and pointers on getting started.

Getting Started

npm install assemble-front-matter --save

and use it as follows:

var yfm = require('assemble-front-matter');

Methods

extract

Extract YAML front matter and content from files.

var raw = yfm.extract("./file.hbs", opts);

Parameters:

  • String: The file to read.
  • Object: The options object to pass to js-yaml

Returns:

Object with three properties

{
 "context": {}         // Object. YAML front matter returned as a JSON object.
 "content": ""         // String. File content, stripped of YAML front matter
 "originalContent": "" // String. Both content and YAML front matter.
}

context

Return YAML front matter as a JSON object.

var data = yfm.extract("./file.hbs").context;

Alias:

var data = yfm.extractJSON("./file.hbs");

content

Return the content of a file, with YAML front matter removed.

var content = yfm.extract("./file.hbs").content;

Alias:

var data = yfm.stripYFM("./file.hbs");

Release History

  • 2013-09-22   v0.1.2   Adds grunt-readme and grunt-pkg-sync
  • 2013-09-02   v0.1.1   Updates tests and example files
  • 2013-08-11   v0.1.0   Initial setup

Author

License

Copyright (c) 2013 Brian Woodward, contributors. Released under the MIT license

This file was generated on Mon Sep 02 2013 09:44:51.

Keywords

assemble

FAQs

Package last updated on 28 Sep 2013

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts