1
0
mirror of https://github.com/fleschutz/PowerShell.git synced 2025-02-20 03:31:33 +01:00
PowerShell/Scripts/convert-md2docx.ps1
2023-05-26 09:39:57 +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}