
Security News
Feross on TBPN: How North Korea Hijacked Axios
Socket CEO Feross Aboukhadijeh breaks down how North Korea hijacked Axios and what it means for the future of software supply chain security.
Convert Markdown to PDF using marked and wkhtmltopdf. You can use multiple Markdown input files and customize the resulting PDF using HTML and CSS.
Thanks to https://github.com/alanshaw/markdown-pdf, which also converts Markdown files to PDF using remarkable and PhantomJS.
mkpdf is using wkhtmltopdf to convert HTML to PDF using Webkit (QtWebKit). Before you can use mkpdf, you'll have to install wkhtmltopdf command line tool.
You can either download a prebuilt version for your system or use a package manager, for example on OS X:
brew install Caskroom/cask/wkhtmltopdf
Install mkpdf as a global module:
npm install -g mkpdf
Usage: mkpdf [options] <markdown-files...>
Options:
-h, --help output usage information
-V, --version output the version number
-f, --paper-format [format] "A3", "A4", "A5", "Legal", "Letter" or "Tabloid"
-r, --paper-orientation [orientation] "portrait" or "landscape"
-b, --paper-border [measurement] Supported dimension units are: "mm", "cm", "in", "px"
-o, --out [path] Path for saving the PDF
--disable-toc Don't create a table of contents
--toc-title [title] The table of contents title. Defaults to "Table of Contents"
--css-path [path] Path to custom CSS file
--highlight-css-path [path] Path to custom highlight.js CSS file
--html-path [path] Path to custom HTML file
For example, convert
README.mdtoREADME.pdf:
mkpdf README.md
Or, combine multiple markdown files to a single PDF:
mkpdf -o welcome.pdf README.md LICENSE.md CONTRIBUTING.md
Install mkpdf as a local module into your project:
npm install mkpdf
var mkpdf = require('mkpdf')
mkpdf().from('/path/to/document.md').to('/path/to/document.pdf', function () {
console.log('Done')
})
// Or using streams
var fs = require('fs')
fs.createReadStream('/path/to/document.md')
.pipe(mkpdf())
.pipe(fs.createWriteStream('/path/to/document.pdf'))
mkpdf returns a stream-from-to object which simplifies the construction of various source and destination streams.
Pass an options object to mkpdf to configure the output.
mkpdf(options)
The paper size. Defaults to
A4
The paper margin. Defaults to
2cm
The paper orientation. Defaults to
portrait
Don't create a table of contents. Defaults to
false
The table of contents title. Defaults to
Table of Contents
Path to custom CSS file, relative to the current directory. Defaults to
[mkpdf_path]/assets/pdf.css
Path to custom highlight.js CSS file, relative to the current directory. Defaults to
[mkpdf_path]/assets/github-gist.css
Path to custom HTML file, relative to the current directory. Defaults to
[mkpdf_path]/assets/index.html
A function that returns a through2 stream that transforms the Markdown before it is converted to HTML. Defaults to
function () { return through() }
A function that returns a through2 stream that transforms the HTML before it is converted to PDF. Defaults to
function () { return through() }
FAQs
Convert Markdown to PDF using marked and wkhtmltopdf
The npm package mkpdf receives a total of 2 weekly downloads. As such, mkpdf popularity was classified as not popular.
We found that mkpdf demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Socket CEO Feross Aboukhadijeh breaks down how North Korea hijacked Axios and what it means for the future of software supply chain security.

Security News
OpenSSF has issued a high-severity advisory warning open source developers of an active Slack-based campaign using impersonation to deliver malware.

Research
/Security News
Malicious packages published to npm, PyPI, Go Modules, crates.io, and Packagist impersonate developer tooling to fetch staged malware, steal credentials and wallets, and enable remote access.