Giter Club home page Giter Club logo

hekyll's Introduction

hekyll NPM version NPM monthly downloads NPM total downloads Linux Build Status

Migrate Jekyll (gh-pages) themes to use handlebars instead of liquid.

Follow this project's author, Jon Schlinkert, for updates on this project and others.

Install

Install with npm:

$ npm install --save hekyll

Usage

Quickstart

The easiest way to use hekyll is to call the static .build method with an options object.

Required options

At minimum, you will need to define the following:

  • options.cwd - the source directory with the jekyll theme to convert
  • options.destBase - the base destination directory to write the converted or copied files to.

Example

var Hekyll = require('hekyll');

Hekyll.build({cwd: 'jekyll_theme_folder', destBase: 'output_folder'})
  .then(function() {
    console.log('converted!');
  })
  .catch(console.error);

Custom

The main export is a constructor function that takes an options object. Once an instance is created, you can use hekyll's methods to convert and copy files however you want. See the API documentation for more details.

Example

var Hekyll = require('hekyll');
var hekyll = new Hekyll({
  cwd: 'jekyll_theme_folder',
  destBase: 'output_folder'
});

function dest(dir) {
  return function(file) {
    return dir || '';
  };
}

hekyll.templates([
  `{,_*/**/}*.{html,markdown,mdown,mkdown,mkdn,mkd,md,textile,liquid}`,
  '!**/{README*,LICENSE*,CONTRIBUTING*}'
], dest())
  .then(hekyll.assets('{assets,public}/**', dest()))
  .then(hekyll.copy('_config.yml', dest()))
  .then(hekyll.copy('_data/**', dest('_data')))
  .then(hekyll.copy('_sass/**', dest('_sass')))
  .then(hekyll.copy('styles.scss', {addImport: 'custom'}, dest('_sass')))
  .then(hekyll.copy('**/*.{xml,txt}', function(file) {
    file.extname += '.hbs';
    return '';
  }))
  .then(hekyll.text(dest()))
  .then(function() {
    console.log('done!');
  })
  .catch(console.error)

Required Options

  • cwd: the directory with source files for a Jekyll theme.
  • destBase: the base destination directory for the converted theme.

API

Create an instance of Hekyll with the given options.

Params

  • options {Object}

Example

var Hekyll = require('hekyll');
var hekyll = new Hekyll();

Copies and converts liquid templates to handlebars templates using the given glob patterns, options and dest function.

Params

  • patterns {String|Array}
  • options {Object}
  • dest {Function}: Must return a string.
  • returns {Promise}

Example

hekyll.templates(patterns, {destBase: 'foo'}, function(file) {
  // optionally do stuff to vinyl "file" object
  // the returned folder is joined to `options.destBase`
  return 'folder_name';
});

Copies files using the given glob patterns, options and dest function. Converts liquid templates and strips front matter from files.

Params

  • patterns {String|Array}
  • options {Object}
  • dest {Function}: Must return a string.
  • returns {Promise}

Example

hekyll.copy(patterns, {destBase: 'foo'}, function(file) {
  return '';
});

Copies assets files using the given glob patterns, options and dest function. Does not read the files or modify file contents in any way.

Params

  • patterns {String|Array}
  • options {Object}
  • dest {Function}: Must return a string.
  • returns {Promise}

Example

hekyll.assets(patterns, {destBase: 'foo'}, function(file) {
  return '';
});

Copies plain text files using the given glob patterns, options and dest function. Strips front-matter, but does not attempt to convert templates.

Params

  • patterns {String|Array}
  • options {Object}
  • dest {Function}: Must return a string.
  • returns {Promise}

Example

hekyll.text(patterns, {destBase: 'foo'}, function(file) {
  return '';
});

Choosing a theme

~20 jekyll themes were tested during the creation of this library, including all of the poole/poole themes from @mdo, and all of the built-in gh-pages themes. Most themes convert flawlessly, but some have nuances that might require some manual editing.

Handlebars helpers

To be able to render the migrated templates with handlebars, you will first need to include any missing handlebars helpers that were converted from liquid filters and tags during the migration.

Here are some libraries that might be useful for this:

Bug reports

If you find a bug or something that doesn't convert correctly, please let me know, I want this to work as seamlessly as possible.

About

Related projects

You might also be interested in these projects:

Contributing

Pull requests and stars are always welcome. For bugs and feature requests, please create an issue.

Please read the contributing guide for advice on opening issues, pull requests, and coding standards.

Building docs

(This project's readme.md is generated by verb, please don't edit the readme directly. Any changes to the readme must be made in the .verb.md readme template.)

To generate the readme, run the following command:

$ npm install -g verbose/verb#dev verb-generate-readme && verb

Running tests

Running and reviewing unit tests is a great way to get familiarized with a library and its API. You can install dependencies and run tests with the following command:

$ npm install && npm test

Author

Jon Schlinkert

License

Copyright © 2017, Jon Schlinkert. Released under the MIT License.


This file was generated by verb-generate-readme, v0.6.0, on September 21, 2017.

hekyll's People

Contributors

jonschlinkert avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  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.