Writing Markdown

After setting up your workspaces and getting familiar with how to create and manage files, it is time to fill these files with content.

On this page, you will learn about writing Markdown, available commands, and some special features of Zettlr's Markdown editor.

What is Markdown?

Markdown is a very simple markup language that uses formatting symbols to format text instead of having you click around a formatting toolbar. You already know many of the conventions of Markdown. For example, to emphasize text, you simply need to surround it with * or _ symbols. In fact, many applications that you may already know use Markdown, such as Slack, Discord, Microsoft Teams, and more.

Note

Despite its simplicity, Markdown contains all formatting conventions you need to write full-fledged research articles. And, should you ever miss something, you can always drop in a few LaTeX commands or HTML tags.

The two main benefits of Markdown are that you can format your entire document without using your mouse or trackpad and that it separates content from layout.

You can direct Zettlr to format everything by pressing a few keys. Additionally, because Markdown purposefully has no direct layouting capabilities, you will find it much easier to focus on what you write instead of tinkering with its looks. The layouting only happens during export.

Note

To learn how to customize how your documents look once you export them, head over to the defaults files documentation.

Formatting with Markdown

To format Markdown documents, there are a few formatting rules that you should know and which we list here:

Formatting Syntax Output
Emphasis _italics_ or *italics* italics
Bold __bold__ or **bold** bold
Strikethrough ~~text~~ text
Link [Text](www.example.com) Text
Image ![Description](image.jpg) Description
Heading # Heading Heading
Heading 2 ## Heading 2 Heading 2
Heading 3 ### Heading 3 Heading 3
Heading 4 #### Heading 4 Heading 4
Heading 5 ##### Heading 5 Heading 5
Heading 6 ###### Heading 6 Heading 6
Bullet list * List item (or + or -) • List item
Item list 1. List item (or 1)) 1. List item
Footnotes Some text[^1]. Some text¹.
Footnote reference [^1]: Footnote text. ¹ Footnote text.
Comment <!-- Commented out --> (Not visible)
Inline math $E = mc^2$ E = mc^2
Block math $$\nE = mc^2\n$ E = mc^2
Horizontal line *** or ---
Block quote > Some quote     Some quote

Note

This list is not exhaustive. There are some more formatting symbols which can be enabled either with extensions or which will be introduced at a later stage of this documentation, for example citations.

If you want to learn even more about Markdown, there are many good resources out there. A good starter is the Markdown guide on Learn X in Y minutes. If you want to get used to writing clean and unambiguous Markdown, view the specifications by CommonMark. Also, there's a "book" on the GitHub flavoured Markdown syntax. View it here. For those engaged in scholarly writing, the Pandoc manual's section on its extended Markdown is worth reading.

Keyboard Shortcuts

Despite never having to leave your keyboard when it comes to writing documents in Markdown, sometimes it is easier to press just two keys instead of four or more. Therefore, there are some keyboard shortcuts that you can use. In addition to those that you may already know, Zettlr offers many convenience shortcuts that make duplicating text, etc., a blaze.

Note

Across this documentation, you will often see the "key" Cmd/Ctrl. By that we mean that you'll need to press the Command-key on macOS, and the Control-key otherwise.

  • Cmd/Ctrl+B: Make text bold
  • Cmd/Ctrl+I: Emphasize text
  • Cmd/Ctrl+K: Create a new link. Selected text (if any) will become the link text. If there is a URL in the clipboard, Zettlr automatically uses it as the link target.
  • Cmd/Ctrl+Shift+I: Insert an image. Selected text (if any) will become the image title. If there is a URL in the clipboard, Zettlr automatically uses it as the image source.
  • Tab: Indent any given list one level. If there is no list, insert a tab character. (If you are using a screen reader and need to use the keyboard to move around the app, press Esc before pressing Tab to un-focus the editor.)
  • Shift+Tab: Un-indent a list one level.
  • Cmd/Ctrl+C: Copy text as plain
  • Cmd/Ctrl+Alt+C: Copy text with formatting (e.g., to paste formatted text into Microsoft Word)
  • Cmd/Ctrl+X: Cut text. If there is no selection, this command cuts the entire line.
  • Cmd/Ctrl+V: Paste text (if you copied formatted text, this will convert it to Markdown before insertion)
  • Cmd/Ctrl+Shift+V: Paste text as plain
  • Cmd/Ctrl+Z: Undo
  • Cmd/Ctrl+Shift+Z: Redo
  • Alt+ArrowUp: Swap current line with the previous
  • Alt+ArrowDown: Swap current line with the next
  • Alt+Shift+ArrowUp: Copy the current line above
  • Alt+Shift+ArrowDown: Copy the current line above
  • Alt+L (Ctrl+L on macOS): Select the current line
  • Cmd/Ctrl+F: Open the search panel
  • Cmd/Ctrl+G: Next occurrence
  • Cmd/Ctrl+Shift+G: Previous occurrence
  • Cmd/Ctrl+D: Select next occurrence

Note

Zettlr also offers two advanced writing modes: Emacs and Vim. Whenever you activate one of these modes, they will change many keybindings and offer new ones. Those settings are recommended for advanced users only.

Multi-Cursor Editing

In addition to these keyboard shortcuts, Zettlr also offers multi-cursor editing. This means that you can add more than one cursor. Clicking while holding down Cmd or Alt will insert a new cursor at the given position. If you drag the mouse across text while holding down Cmd or Alt, you can create multiple selections.

Whenever you have several cursor or selections, pressing any keys will do something to all of these cursor or selections simultaneously. You can use this to, e.g., correct multiple places of your document at once.

Working with footnotes

Footnotes are a notoriously difficult thing in Markdown, because they require some special characters to realise them, and also need you to work at two positions in the document at once: Where you want to put your footnote and at the bottom, where the reference text resides. Zettlr tries its best to ease your pain with these in the following ways:

  1. You can use a shortcut to place footnotes: Cmd+Alt+R (macOS) or Ctrl+Alt+F (macOS/Windows/Linux).
  2. The reference text (that is, the content of the footnote) will be displayed at the bottom end of the editor window when you hover over a footnote.
  3. If you hover with your mouse over a footnote anchor somewhere in your text, a popup will show up that lets you edit the footnote in place. After you are finished editing your footnote, click the save button to close the popup and replace the text of the footnote.