json-theme-even-fork/index.js

18 lines
422 B
JavaScript

import fs from 'fs'
import path from 'path'
import { fileURLToPath } from 'url'
import Resume from './resume.js'
const dirname = typeof __dirname === 'string'
? __dirname
: path.dirname(fileURLToPath(import.meta.url))
export const pdfRenderOptions = { mediaType: 'print' }
export const render = resume => {
const css = fs.readFileSync(path.resolve(dirname, 'style.css'), 'utf-8')
return Resume(resume, css)
}