Skip to content

Latest commit

 

History

History
46 lines (32 loc) · 809 Bytes

README.md

File metadata and controls

46 lines (32 loc) · 809 Bytes

metalsmith-pdf

PDF generator for metalsmith

Installation

Install wkhtmltopdf on your system.

And install this plugin:

$ npm install metalsmith-pdf

Usage

All options other than pattern are passed directly to the wkhtmltopdf options parser

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

metalsmith.use(pdf({
  pattern: "**/*.html",
  printMediaType: true,
  pageSize: "letter"
}));

CLI Usage

All of the same options apply, just add them to the "plugins" key in your metalsmith.json configuration:

{
  "plugins": {
    "metalsmith-pdf": {
      "pattern": "**/*.html",
      "printMediaType": true,
      "pageSize": "letter"
    }
  }
}

License

MIT