0.1.0 • Published 11 years ago

docnav v0.1.0

Weekly downloads
2
License
-
Repository
github
Last release
11 years ago

DocNav

Create a DocPad directory structure based off of a yaml navigation file, including specific metadata.

Install

Requires node.js

[sudo] npm install -g docnav

Usage

> docnav
Options:
  -d  /src/documents directory  [required]
  -n  Location of Nav File      [required]

Example nav.yml

main:
  - ''
  - page-one:
    - child-one:
      - subchild-test-one
      - subchild-test-two
      - subchild-test-three
  - page-two:
    - child-two:
      - subchild-test
  - page-three
  - page-four

Metadata

By default, DocNav creates an index.html file in each of the directories. It also includes basic metadata for DocPad in each file.

---
layout: 'default'
title: 'Page One'
nav_title: 'Page One'
---