-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathgenerate-markdown-to-pdf.js
70 lines (61 loc) · 2.66 KB
/
generate-markdown-to-pdf.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
// Example: Generate a PDF from Markdown via the Anvil API
//
// * PDF generation API docs: https://www.useanvil.com/docs/api/generate-pdf
// * Anvil Node.js client: https://github.com/anvilco/node-anvil
//
// This script is runnable as is, all you need to do is supply your own API key
// in the ANVIL_API_KEY environment variable.
//
// node examples/generate-markdown-to-pdf.js
//
// The filled PDF will be saved to `output/generate-markdown-output.pdf`. You can
// open the filled PDF immediately after saving the file on OSX machines with
// the `open` command:
//
// node examples/generate-markdown-to-pdf.js && open output/generate-markdown-output.pdf
const fs = require('fs')
const path = require('path')
const Anvil = require('@anvilco/anvil')
const run = require('../lib/run')
// Get your API key from your Anvil organization settings.
// See https://www.useanvil.com/docs/api/getting-started#api-key for more details.
const apiKey = process.env.ANVIL_API_KEY
const outputFilepath = path.join(__dirname, '..', 'output', 'generate-markdown-output.pdf')
async function generateMarkdownPDF () {
const anvilClient = new Anvil({ apiKey })
const exampleData = getExampleMarkdownToPDFData()
const { statusCode, data, errors } = await anvilClient.generatePDF(exampleData)
console.log('Making Markdown PDF generation request...')
console.log('Finished! Status code:', statusCode) // => 200, 400, 404, etc
if (statusCode === 200) {
// `data` will be the filled PDF binary data. It is important that the
// data is saved with no encoding! Otherwise the PDF file will be corrupt.
fs.writeFileSync(outputFilepath, data, { encoding: null })
console.log('Generated PDF saved to:', outputFilepath)
} else {
console.log('There were errors!')
console.log(JSON.stringify(errors, null, 2))
}
}
function getExampleMarkdownToPDFData () {
return {
title: 'Example Invoice',
data: [{
label: 'Name',
content: 'Sally Jones',
}, {
content: 'Lorem **ipsum** dolor sit _amet_, consectetur adipiscing elit, sed [do eiusmod](https://www.useanvil.com/docs) tempor incididunt ut labore et dolore magna aliqua. Ut placerat orci nulla pellentesque dignissim enim sit amet venenatis.\n\nMi eget mauris pharetra et ultrices neque ornare aenean.\n\n* Sagittis eu volutpat odio facilisis.\n\n* Erat nam at lectus urna.',
}, {
table: {
firstRowHeaders: true,
rows: [
['Description', 'Quantity', 'Price'],
['4x Large Widgets', '4', '$40.00'],
['10x Medium Sized Widgets in dark blue', '10', '$100.00'],
['10x Small Widgets in white', '6', '$60.00'],
],
},
}],
}
}
run(generateMarkdownPDF)