Skip to content

weswigham/metalsmith-metallic

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

56 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

metalsmith-metallic travis status npm version

A Metalsmith plugin to highlight code in Markdown files.

Installation

$ npm install metalsmith-metallic

Setup

Include a highlight.js theme somewhere in your templates.

Ex:

<link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/highlight.js/9.7.0/styles/default.min.css">

CLI Usage

Install via npm and then add the metalsmith-metallic key to your metalsmith.json plugin, like so:

{
  "plugins": {
    "metalsmith-metallic": true
  } 
}

Javascript Usage

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

metalsmith.use(metallic());

License

MIT