1
0
mirror of https://github.com/fleschutz/PowerShell.git synced 2025-03-21 18:57:29 +01:00
PowerShell/scripts/convert-md2docx.ps1
2024-10-01 15:11:03 +02:00

4 lines
127 B
PowerShell
Executable File

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