@b55es/woolf
v1.1.0
Published
`woolf` is a Javascript script that takes in source files written in Markdown and converts them to a set of HTML files.
Downloads
1
Readme
woolf
woolf
is a Javascript script that takes in source files written in Markdown and converts them to a set of HTML files.
Installation and Usage
Install woolf
and run it with the following command line in Terminal
$ npm install / npm link (local)
$ woolf build <path to the directory with Markdown files>
how woolf works
woolf
looks for markdown files in a directory specified by the path provided in the command line.
It converts their Markdown content to HTML, using micromark
. micromark
is an open source markdown parser written in JavaScript. It emits and compiles tokens directly to HTML.
The result HTML data is then written to HTML files in a new directory that has the same parent directories as the original one.