Preview Markdown text with beautiful formatting.

Exporting & Printing

Markdown cheatsheet

Emphasis

*italic* or _italic_
**bold** or __bold__
`monospaced`
~~strikethrough~~
^sup^ and ~sub~

Links

[link name](https://iwl.me)

Headings

# Heading 1
## Heading 2
### Heading 3 ... 6

or

Heading 1
=========

Heading 2
---------

Paragraphs

First paragraph
continues.

Second paragraph.

Lists

1. First
2. Second

- Bullet
- Bullet

* Bullet
+ Bullet

- [ ] checkbox
- [x] checked

Blockquote

> blockquote
> continues

Images

![alt](https://iwl.me/test.png)

Horizontal Rule

---
* * *

Tables

| Name  | Centered |Right |
| ------|:--------:|-----:|
| row 1 | centered |  100 |
| row 2 | centered |   15 |
                    

Comments

%% inline comment %%
<!-- inline comment -->

// Block comment
// continues

%%
Block comment
continues
%%

// TODO: comment
// DONE: comment

Footnotes

This is an ^[inline footnote].

This is a footnote [^name].

[^name]: Footnote contents.

Math (reference)

Inline $\frac{2}{3}$
(uses $\TeX$)

$$
\frac{2}{3}
\times
\int_{a}^{b} x^2\,dx
$$
What is Markdown?

Markdown is a lightweight markup language with plain text formatting syntax.

Open format

Markdown allows you to format and style text directly without hidden proprietary commands or software.

Experience

Markdown allows writers to focus on writing without distractions.

Longetivity and compatibility

Plain text files can be opened and edited with any text editor on any operating system. This makes them highly portable and universally compatible. They can be read and edited far into the future, regardless of technological changes.

Publishing

Markdown can be rendered into HTML, PDF, Word, and other rich text formats using tools like this one, and published on the web or in print.