Prep

The workshop will use a web-based editor to get hands-on with Markdown. If you want to edit Markdown and make PDFs, you will want to install Pandoc and a text editor.

Install Pandoc

Pandoc is a command line utility to translate between many formats and generate new output versions, such as PDFs (via LaTeX).

To create PDFs from Markdown, you will need Pandoc plus a LaTeX distribution. Check the Installing Pandoc guide for full details. Here is the suggested method:

Windows and Mac
  1. Download and install a LaTeX distribution. These are big packages so this step can take a long time!
  2. Download the latest installer release for your platform from Pandoc Releases.
    • For Windows look for the extension .msi, e.g. pandoc-2.10.1-windows-x86_64.msi
    • For Mac look for the extension .pkg, e.g. pandoc-2.10.1-macOS.pkg
  3. Run the Pandoc installer.
Linux

Pandoc and LaTeX are available in most distro’s repositories. These might not be most up-to-date versions, but are the best way to install.

On Ubuntu: sudo apt install pandoc texlive texlive-fonts-extra texlive-xetex

Markdown Editor

There are many Markdown specific editors and note taking apps (see Markdown Tools). These often have preview, export, and syncing options built in which can be helpful features. However, Markdown can be written by any text editor and most people will probably choose to write in a code editor.

For basic writing, Windows Notepad++, Mac TextEdit, or Linux Gedit are sufficient. For larger projects or notes, a more complete code editor might be helpful.

Open-source cross platform suggestions:

Remember to set your indentation to use 4 spaces (rather than tabs).