Markdown Cheat Sheet 📃
English

Markdown Cheat Sheet 📃

by

language learning
productivity
programming

Markdown Cheat Sheet

A fresh new addition to Journaly is the possibility to use Markdown in the comments. In this very short post, I'll summarize the most useful features of Markdown for writing hopefully better comments.

Please note that the new addition doesn't affect the way you write your posts: it's only available for writing comments. For the technically curious among us (hi Linda), here is a list of links to the related pull requests:

This new feature was mostly single-handedly added by a new code contributor to Journaly. Thanks, Meredith, for this great change!

Okay, I said this will be a short post. Here is the table:

Feature

Syntax example

headings

# This is a nice heading

bold text

Markdown is just **great**.

italic text

Markdown is just *great*.

Markdown is just _great_.

links

[Journaly is great](https://journaly.com/)

**[Journaly is great](https://journaly.com/)** for more emphasis

Update: Links like http://www.patience-is-a-virtue.org/ are now automatically shown as hyperlinks.

quotes

> “The wand chooses the wizard, Mr. Potter.” – Mr. Ollivander

ordered lists

1. Go to island.

2. Find X on the ground.

3. Dig.

unordered lists

* Spam

* Eggs

* Bacon

* Sausage

images (not working)

![lovely little beasts](https://images.unsplash.com/photo-1497752531616-c3afd9760a11)

code

Open a console and type `sudo rm -rf /`.

horizontal rule

---

in an own line

strike-through

Write ~horrible~ nice stories, please.

Robin's tip: A possible use case for this is to indicate deletions in your comments.

checkboxes

Absolutely *amazing* what has happened around this post:

- [x] correctly styled ordered lists

- [x] strikethrough implemented

- [x] checkboxes implemented

- [x] nicely blue styled hyperlinks

- [x] blockquote + line break improvement

- [x] lovely styled checkboxes

- [ ] do the laundry 🧺

Great work, Robin! 👨‍🎨

10