Converting From Markdown to Word
To convert from Markdown to Word you will first need to open up the terminal or command prompt depending on your operating system.
Terminal/Command Prompt Instructions:
Windows
-
Press and hold the windows key on your keyboard
This will be on the bottom left corner and will have the windows logo on it
-
While the key is pressed, hit the “R” key
-
In the “Run” window that pops up, type “cmd”
-
Press Enter
Mac
-
Press the command (⌘) key and the spacebar at the same time
-
Type “terminal” into the search bar
-
Select the following icon in the menu:
Figure 1: This is the icon you should select to access the terminal
Conversion Instructions
-
Move the markdown file you want to convert onto your desktop
-
In the terminal or command prompt type
cd Desktop
- Then copy and paste the following command into the window:
pandoc -s input.md -o output.docx
-
Modify the “input.md” to match the name of your markdown file on your desktop
-
Optionally, you may change the name of output.docx to change the name of the output file before it is made
- Once you press enter, the outputted .docx file will be generated and saved to your desktop
Back to the home page