You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi! I just wanted to share this code that worked for me, since I had a hard time finding it, and the one posted in the FAQ on the main pandoc site did NOT work for me--my computer (Windows, PowerShell) kept throwing errors. Saved me so much time; I was able to convert entire folders of markdown files to .docxs at a time. I'm not terribly advanced at coding so I needed something simple.
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
Hi! I just wanted to share this code that worked for me, since I had a hard time finding it, and the one posted in the FAQ on the main pandoc site did NOT work for me--my computer (Windows, PowerShell) kept throwing errors. Saved me so much time; I was able to convert entire folders of markdown files to .docxs at a time. I'm not terribly advanced at coding so I needed something simple.
Get-ChildItem -Filter *.md | ForEach-Object { pandoc $.FullName -o "$($.BaseName).docx"}
Beta Was this translation helpful? Give feedback.
All reactions