Logo

Markdown Editor Online

Markdown Documentation

Introduction

Markdown is a lightweight markup language that allows you to format text easily. Below are the basic syntax examples to get started.

Headers

Use # for headers. Add more # for smaller headers:

# Header 1
## Header 2
### Header 3

Text Formatting

You can make text bold, italic, or even inline code:

**Bold text** or __Bold text__
*Italic text* or _Italic text_
`Inline code`

Lists

Create ordered or unordered lists:

- Item 1
- Item 2

1. First
2. Second

Links

Create links using square brackets and parentheses:

[Link text](https://example.com)

Code Blocks

Wrap code with triple backticks:

```javascript
console.log("Hello World!");
```

More Resources

For more advanced features, refer to the Markdown Guide.