1
0
mirror of https://github.com/fleschutz/PowerShell.git synced 2025-04-04 06:20:42 +02:00
PowerShell/Scripts/convert-md2docx.ps1
2023-04-21 19:38:29 +02:00

4 lines
124 B
PowerShell
Executable File

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