Markdown

Editor

Preview

Welcome to Markdown!

Markdown is a lightweight markup language that you can use to add formatting elements to plaintext text documents.

How to use this?

  1. Write markdown in the editor window
  2. See the rendered markdown in the preview window

Features

  • Create headings, paragraphs, links, block quotes, inline-code, code blocks, and lists
  • And that is just about it, to be honest

This is an example of a block quote. If you would like to learn more about Markdown syntax, you can visit this markdown cheatsheet.

Headings

To create a heading, add the hash sign (#) before the heading. The number of number signs you use should correspond to the heading level. You'll see in this guide that we've used all six heading levels (not necessarily in the correct way you should use headings!) to illustrate how they should look.

Lists

You can see examples of ordered and unordered lists above.

Code Blocks

This markdown editor allows for inline-code snippets, like this <p>I'm inline</p>. It also allows for larger code blocks like this:

<main>
    <h1>This is a larger code block</h1>
</main>