Markdown Cheat Sheet

shrib.com lets you use Markdown formatting in your notes. As soon as you start using it, you can toggle markdown rendering in the toolbox where you see the markdown icon:

Notes can also be published with markdown formatting.

Below is a brief summary of the full syntax.

Paragraphs

Enter an empty line (hit return twice) to start a new paragraph.

For a simple newline,
just append two spaces
at the end of the upper line.

Headers

  • # Biggest Title
  • ## Subtitle
  • ### Even smaller, etc.

Emphasis

  • *Italic* or _Italic_: Italic
  • **Bold** or __Bold__: Bold

Lists

Bullet (unordered)

* Item 1
* Item 2
* Item 2a (4 spaces at the beginning of the line)
* Item 2b (4 spaces at the beginning of the line)

becomes:

  • Item 1
  • Item 2
    • Item 2a
    • Item 2b

Numbered (ordered)

  1. Item 1
  2. Item 2
  3. Item 3

becomes:

  1. Item 1
  2. Item 2
  3. Item 3
[Online Notepad](https://shrib.com) 

becomes

Online Notepad

Images

![shrib.com Logo](https://shrib.com/zuex/icons/ms-icon-70x70.png)

becomes

shrib.com Logo

Task List / Todo List

– [x] Task Complete
– [] Incomplete Task

🗹 Task Complete
☐ Incomplete Task


shrib.com uses the open source “showdown” library to render markdown. Refer to the full syntax documentation for more options and details.