
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
remarkable_pdfmake
Advanced tools
Convert markdown text to [PDFMake](https://github.com/bpampuch/pdfmake) arguments.
A Remarkable plugin that converts Markdown to PDFMake arguments.
$ npm install --save remarkable_pdfmake
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: `,
],
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();
Does not parse lists or tables.
$ npm install && npm test
FAQs
Convert markdown text to [PDFMake](https://github.com/bpampuch/pdfmake) arguments.
We found that remarkable_pdfmake 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
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.