2020-07-05 14:54:30 +02:00
|
|
|
const fs = require('fs')
|
|
|
|
const Handlebars = require('handlebars')
|
2018-09-23 20:28:05 +02:00
|
|
|
|
2020-07-05 14:54:30 +02:00
|
|
|
Handlebars.registerHelper('formatDate', dateString =>
|
|
|
|
new Date(dateString).toLocaleDateString('en', {
|
2020-07-05 14:19:26 +02:00
|
|
|
month: 'short',
|
|
|
|
year: 'numeric',
|
2020-07-05 14:54:30 +02:00
|
|
|
}),
|
|
|
|
)
|
2018-09-23 20:28:05 +02:00
|
|
|
|
2020-07-05 14:54:30 +02:00
|
|
|
Handlebars.registerHelper('join', (arr, separator) =>
|
|
|
|
arr.join(typeof separator === 'string' ? separator : ', '),
|
|
|
|
)
|
|
|
|
|
|
|
|
exports.render = resume => {
|
|
|
|
const template = fs.readFileSync(`${__dirname}/resume.hbs`, 'utf-8')
|
|
|
|
const css = fs.readFileSync(`${__dirname}/style.css`, 'utf-8')
|
|
|
|
|
|
|
|
return Handlebars.compile(template)({ css, resume })
|
|
|
|
}
|