mirror of
https://github.com/kemko/resume.git
synced 2026-01-01 15:55:47 +03:00
11 lines
259 B
TypeScript
11 lines
259 B
TypeScript
import fs from "node:fs";
|
|
import { mdToPdf } from "md-to-pdf";
|
|
|
|
(async () => {
|
|
const pdf = await mdToPdf({ path: "./resume.md" }).catch(console.error);
|
|
|
|
if (pdf) {
|
|
fs.writeFileSync("output/art_rosnovsky_software_engineer.pdf", pdf.content);
|
|
}
|
|
})();
|