This project is maintained by lucy1011995
This guide will explain how to convert a markdown file to a word file.
Change the directory in your terminal with the cd command (Figure 1).
cd directory
Use the pandoc command to covert your markdown file.
pandoc -s source_file.md -o destination_file.docx
Note if you want to convert images as well, used the following command.
pandoc -s source_file.md -t markdown --extract-media=images -o destination_file.docx
Back to the home page