HomeBlogMarkdown Guide
Developer Tools · 6 min read

Markdown Guide for Beginners — Syntax & Cheat Sheet

Markdown lets you write formatted text using plain characters. It's used everywhere — GitHub, Notion, Reddit, Slack. Here's the complete beginner's reference.

Markdown Cheat Sheet

MarkdownResult
# Heading 1Largest heading (H1)
## Heading 2Second-level heading (H2)
**bold text**bold text
*italic text*italic text
~~strikethrough~~strikethrough
[Link](https://url.com)Clickable hyperlink
![alt](image.png)Image
`inline code`inline code
- item or * itemBullet list item
1. itemNumbered list item
> quoteBlockquote
---Horizontal rule

Code Blocks in Markdown

For multi-line code, use triple backticks with optional language name for syntax highlighting:

```javascript
function greet(name) {
  return `Hello, ${name}!`;
}
```

Frequently Asked Questions

A lightweight markup language for formatting plain text into HTML. Used by GitHub, Reddit, Notion, Slack, and most writing tools.
Bold: **text** or __text__. Italic: *text* or _text_. Bold italic: ***text***.
[Link text](https://url.com) for links. ![Alt text](image.png) for images.
Use PickConverter's free Markdown to HTML Converter. Paste Markdown, see the HTML and live preview instantly.
Md

Convert Markdown to HTML — free

Live preview, instant output. No sign-up required.

Open Markdown Converter →