Skip to content

elsehow/bundledown

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

bundledown

recursively bundle arbitrary files!!!!

installation

npm install -g bundledown

usage

make a markdown file:

# my cool markdown document

lets bundle some markdown

@include('./src/other-markdown-file.md')

nice

now just

bundledown index.md -o bundle.md

or, in js,

var bundledown = require('bundledown')
var filePath = require('path').join(__dirname, 'myfile.md')
var readStream = require('fs').createReadStream(filePath)

bundledown(readStream).pipe(process.stdout)

api

bundledown(path)

recursively bundles the file at path. returns a stream.

license

BSD

About

include statements for markdown c:

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published