Skip to content

brechtcs/pbox

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

17 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

pbox

Parser for concatenated Jekyll posts

Install

npm install pbox

Usage

var fs = require('fs')
var pbox = require('pbox')

var posts = fs.readFileSync('concat.md', 'utf-8')
var parsed = pbox.parse(posts)

Given the following input:

---
title: First post
---

Some text.

---
title: Second post
---

First section.

---

Second section.

This will parse into an array with this structure:

parsed = [
  {
    title: 'First post',
    content: ['\nSome text.\n']
  },
  {
    title: 'Second post',
    content: [
      '\nFirst section.\n',
      '\nSecond section.\n'
    ]
  }
]

License

Apache-2.0

About

Parser for concatenated Jekyll posts

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published