the IT Hustle
ToolsPricingBlogAbout
FundamentalsAI-Assisted2026-04-03•9 min read

The Complete Markdown Cheat Sheet (With Copy-Paste Examples)

By The IT Hustle Team

✨ AI-Assisted Content

This article was generated with AI assistance and reviewed by our team for accuracy and quality. All technical information and examples have been verified.

Markdown is the formatting language behind GitHub READMEs, Notion pages, Slack messages, Discord, Reddit, and most documentation sites. It's also what ChatGPT and Claude output by default. If you work in tech in 2026, you use Markdown whether you know it or not.

This cheat sheet covers everything you need. Bookmark it.

Headings

# Heading 1

## Heading 2

### Heading 3

#### Heading 4

More #s = smaller heading. Use H1 for titles, H2 for sections, H3 for subsections.

Text Formatting

**bold text**

*italic text*

***bold and italic***

~~strikethrough~~

`inline code`

> This is a blockquote

Links & Images

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

![Alt text](image-url.png)

[Link with title](https://example.com "Hover text")

The ! before brackets makes it an image instead of a link.

Lists

Unordered:

- Item one

- Item two

- Nested item

Ordered:

1. First

2. Second

3. Third

Task list:

- [x] Completed task

- [ ] Pending task

Code Blocks

Inline code:

Use `backticks` for inline code

Fenced code block with syntax highlighting:

```javascript

function hello() {

console.log("Hello!");

}

```

Replace "javascript" with python, bash, sql, css, etc. for proper highlighting.

Tables

| Column 1 | Column 2 | Column 3 |

|----------|----------|----------|

| Row 1 | Data | Data |

| Row 2 | Data | Data |

Alignment:

| Left | Center | Right |

|:-----|:------:|------:|

Colons in the separator row control text alignment.

Horizontal Rules, Footnotes & More

Horizontal rule:

---

Footnotes (GitHub/extended):

Here is a statement[^1].

[^1]: This is the footnote text.

Collapsed section (GitHub):

<details>

<summary>Click to expand</summary>

Hidden content here.

</details>

Where Markdown Works

PlatformSupports
GitHubFull GFM (tables, task lists, footnotes)
NotionMost syntax (paste Markdown, auto-converts)
SlackPartial (bold, italic, code, links, lists)
DiscordMost syntax (no tables)
RedditFull Markdown in old editor
ChatGPT/ClaudeFull — all output is Markdown

Need to format text quickly? Try our free Text Tools Suite for case conversion, word count, and more.

IT
The IT Hustle Team

We build free developer tools and write about AI, automation, and developer productivity. 30 tools, 33 articles, and an AI Prompt Engine — all built to help workers navigate the AI era. Published by Salty Rantz LLC.

Our ToolsAll ArticlesAbout Us

The IT Hustle Weekly

What changed in AI this week and what it means for your job. Free tools, honest reviews, zero spam.

Generate Your Own Anti-Hallucination Prompts

Our AI Prompt Engine uses patent-pending technology to generate prompts with built-in verification and contradiction testing.

Try 3 Free Generations →

Company

  • About
  • Blog
  • Contact

Product

  • Tools
  • Pricing

Legal

  • Privacy Policy
  • Terms of Service
  • Disclaimer

© 2026 Salty Rantz LLC. All rights reserved.

Made for workers navigating tech upheaval.