Skip to content

Converting the Latest Markdown Files into Microsoft Word Document

Martin Kilarski edited this page Apr 24, 2019 · 1 revision

Instructions

Follow the instructions below to convert the most up-to-date version of the report into Word file.

  1. Install Pandoc on your computer

  2. Open a directory in the Terminal

  3. Type the following command:

    find ./ -iname "*.md" -type f -exec sh -c 'pandoc "${0}" -o "${0%.md}.docx"' {} \;

  4. Press the enter key

Clone this wiki locally