Code Monkey home page Code Monkey logo

metalsmith-hierarchies's Introduction

metalsmith-hierarchies

A plugin for Metalsmith for consuming and using JSON navigation hierarchies. This plugin is in development.

Installation

$ npm install lrenhrda/metalsmith-hierarchies

Description

By default this plugin looks in the ./hierarchies/ directory for JSON files that describe hierarchies of navigation for a site. It processes each hierarchy it finds and injects additional data before making them all available to Metalsmith.

Hierarchies are node-based structures that can be nested. Each node requires at least a "name" property, and optionally "pages", which is an array of all child pages in the structure. As the tree is traversed, path segments are generated from the "name" field or from an optional overriding "slug" field, and the segment is used to construct the path to the node. One may also override the path of a node by defining a "path" segment manually on a node. The top-level begins with 0 and the name of the structure for the "name" field.

Once these files are processed they are made available to Metalsmith under the hierarchies metadata property.

Usage

Via JavaScript

var hierarchies = require('metalsmith-hierarchies');

gulp.task('build', function() {
  return gulp.src('./content/**/*.*')
    .pipe(metalsmith({
      use: [
        hierarchies({
          ...
        })
      ]
    }))
    .pipe(gulp.dest('./build'));
});

Options

hierarchies: './hierarchies/';

The location where hierarchy JSON files should be looked for.

metaProperty: 'hierarchy';

The name of the property to use for the final compiled metadata.

License

MIT

metalsmith-hierarchies's People

Contributors

lrenhrda avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.