Paige.js

The quickie-wiki Github project page generator

Source files:

  1. paige.coffee

Paige.js - Painless page generation for Github code

Paige.js is a simple npm package for creating instant Github Pages without having to deal with any HTML or CSS coding. Paige let's you just focus on your code while providing a clean and presentable face for your project. The project page for Paige, itself, was generated with paige.js.

Paige is largely influenced by Docco and Underscore. The idea behind this project was to—in a sense—extend the wonderful functionality of Docco, and take it one step further as a more fully-featured project site. As such, Paige uses Docco for its source-file annotation, and its style is inspired heavily on the beauty and simplicity of the Underscore website. Not only that, but they are both direct dependencies of this project as well.

Paige.js is hosted on Github. Please feel free to mess around with it and let me know of any bugs you find. Also you can always reach me on twitter @rthauby.

Demo

You're either reading this at the project page itself, or on the Github repo site. If it's the latter, you can see the output of running paige against this very Readme file here. If it's the former, well, you're looking at it.

Installation Instructions

You'll be needing Node.js, Docco and Underscore. Then to install:

sudo npm install paige

... then you can just do:

paige path/to/config

... and go have a beer or two.

Configuration

Paige takes one argument only, and it's the location to a configuration file. Alternatively you can just skip the location of this file, and Paige will default to paige.config at the root of your project. The configuration file must be in JSON format.

A basic configuration file looks like this:

 {
    "title" :             "Paige.js",
    "content_file" :      "README.mdown",
    "include_index" :     true,
    "docco_files" :       "src/*.coffee",
    "header" :            "Paige.js",
    "subheader" :         "The quickie-wiki Github project page generator",
    "background" :        "bright_squares"
    }

The properties here are:

Known Issues

Change Log

0.1.2

Minor language tweaks and info.

0.1.0

Initial release of Paige.js