1
0
mirror of https://github.com/fleschutz/PowerShell.git synced 2025-03-22 19:26:49 +01:00
PowerShell/Scripts/convert-docx2md.ps1

1 line
102 B
PowerShell
Raw Normal View History

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