14 lines
287 B
PowerShell
14 lines
287 B
PowerShell
$timestamp = Get-Date -Format "yyyyMMdd_HHmmss"
|
|
|
|
$input = "markdown/resume.md"
|
|
$output = "resume_$timestamp.pdf"
|
|
|
|
$pwd = Get-Location
|
|
|
|
docker run --rm `
|
|
--volume "${pwd}:/data" `
|
|
pandoc/custom `
|
|
$input -o "/data/pdf/$output" --from markdown `
|
|
--verbose `
|
|
--pdf-engine=lualatex
|