New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

remarkable_pdfmake

Package Overview
Dependencies
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

remarkable_pdfmake

Convert markdown text to [PDFMake](https://github.com/bpampuch/pdfmake) arguments.

latest
Source
npmnpm
Version
0.0.1
Version published
Maintainers
1
Created
Source

Remarkable PDFMake Plugin

A Remarkable plugin that converts Markdown to PDFMake arguments.

Install

$ npm install --save remarkable_pdfmake

Example


const fs = require('fs'),
	PdfPrinter = require('pdfmake'),
	Remarkable = require('remarkable'),
	remarkablePdfMake = require('remarkable_pdfmake');
	remarkable = new Remarkable(),
	printer = new PdfPrinter({
		Helvetica: {
			normal: 'Helvetica',
			bold: 'Helvetica-Bold',
			italics: 'Helvetica-Oblique',
			bolditalics: 'Helvetica-BoldOblique'
		}
	}),
	file = '/tmp/markdown.pdf'
	md = [
		'Here we have some Markdown that is **bold** and some *italic* or even _**italibold**_.',
		'Here\'s a [link to Google!](http://google.com)',
		'',
		`You can embed relative images or data URIs: ![Alt text is ignored](${DATA_URI})`,
	],

remarkable.use(plugin);

let promise, parsed, writeStream, pdfDoc;

parsed = remarkable.render(md.join('\n'));

writeStream = fs.createWriteStream(file);

pdfDoc = printer.createPdfKitDocument({
	content: parsed,
	defaultStyle: {
		font: 'Helvetica'
	}
});

pdfDoc.pipe(writeStream);
pdfDoc.end();

Limitations

Does not parse lists or tables.

Testing

$ npm install && npm test

Keywords

document

FAQs

Package last updated on 09 Oct 2019

Did you know?

Socket

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.

Install

Related posts