https://github.com/christophercrouzet/pillr
Framework for static site generators.
https://github.com/christophercrouzet/pillr
framework nodejs static-site-generator
Last synced: about 1 year ago
JSON representation
Framework for static site generators.
- Host: GitHub
- URL: https://github.com/christophercrouzet/pillr
- Owner: christophercrouzet
- License: mit
- Created: 2017-10-01T09:03:05.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2018-03-04T06:42:07.000Z (about 8 years ago)
- Last Synced: 2025-03-06T09:07:10.736Z (about 1 year ago)
- Topics: framework, nodejs, static-site-generator
- Language: JavaScript
- Homepage:
- Size: 13.7 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
Pillr
=====
Pillr is a framework to build static site generators upon.
The framework is designed to only contain the core components and architecture of a static site generator. It is up to the user to extend Pillr with the desired features to build a fully-fledged static site generator.
## Features
- CommonMark (Markdown) syntax to generate HTML content.
- JSON front matter to define metadata for each page.
- Mustache to define layout templates.
- support for styling using LESS.
- support for Markdown extensions: abbreviations, containers, definition lists, footnotes, subscript, and superscript.
- no database, everything is contained in the metadata and the final file hiearchy mirrors the one used as the source.
- propagation of metadata to descendant files if specified at the directory level.
- theme-based.
- async.
Pillr ships with 3 base compounds to copy asset files, and to generate pages or styles.
A compound defines a serie of components that transforms the source files into the final result to be written at a given destination. They are extensible and customizable.
## Installation
```shell
$ npm install pillr
```
## Out There
Projects using Pillr include:
- [eddi](https://github.com/christophercrouzet/eddi)
## Author
Christopher Crouzet
[](https://christophercrouzet.com)