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