1
0
mirror of https://github.com/fleschutz/PowerShell.git synced 2025-01-27 16:18:45 +01:00
PowerShell/Scripts/convert-md2pdf.ps1
2023-04-21 19:38:29 +02:00

1 line
118 B
PowerShell
Executable File

gci -r -i *.md |foreach{$pdf=$_.directoryname+"\"+$_.basename+".pdf";pandoc -f markdown -s --citeproc $_.name -o $pdf}