ToolHop.

ADVERT

๐Ÿ““ Markdown Cheatsheet

Copy-ready Markdown syntax for headings, emphasis, lists, tables, code blocks, and media embeds.

A complete Markdown reference featuring the syntax writers reach for every day. Copy-ready snippets for headings, lists, code, tables, and images keep your README files and docs consistent.

Headings & Structure

Organize your document hierarchy with predictable heading levels and blockquotes.

MarkdownPreviewNotes
# Heading 1Heading 1Use one to six # symbols for H1โ€“H6 levels.
## Heading 2Heading 2Smaller sub-heading for section titles.
Heading level 1 ===================Setext H1Alternative underline style for H1 and H2.
> Quoted insightBlockquoteAdd nested > symbols for multi-level quotes.

Inline Emphasis

Mix emphasis, code, and highlights for readable copy.

MarkdownPreviewNotes
**bold**boldUse ** or __ for strong emphasis.
*italic*italicUse * or _ for emphasis.
~~strikethrough~~strikethroughGreat for edits or completed tasks.
`inline code`inline codeWrap code with single backticks.

Lists, Tasks & Breaks

Structure ideas with ordered lists, checklists, and horizontal rules.

MarkdownPreviewNotes
- unordered item
  • unordered item
Use -, +, or * for unordered lists.
1. ordered item
  1. ordered item
Numbers auto-increment even if repeated.
- [x] Completed task
  • Completed task
GitHub Flavored Markdown supports task lists.
--- or ***
Create thematic breaks with three hyphens or more.

Links, Media & Code Fences

Embed rich references, images, and syntax-highlighted blocks.

MarkdownPreviewNotes
[ToolHop](https://toolhop.app)ToolHop[text](url) is the classic inline link pattern.
![Alt text](graphic.png)Image with alt textSame format as links but prefixed with !.
[id]: https://example.comReference-style links keep paragraphs tidy.Use [link text][id] inline, define at the bottom.
```js console.log('hi') ```Multi-line fenced code blockFence triple backticks and add a language tag for syntax highlighting.

Tables & Advanced Blocks

Create tabular data and sprinkle raw HTML for extra control.

MarkdownPreviewNotes
| Col | Col || Col | Col |Use pipes and --- separators. Align with :---, :---:, or ---:.
:---Left align:--- for left, :---: center, ---: right alignment.
```mermaid```Mermaid diagramPlatforms like GitHub render diagrams when enabled.
<details><summary>Title</summary>Hidden</details>Expandable detailsRaw HTML is allowed when Markdown falls short.

Best Practices

Quick reminders for professional documentation.

  • Readable line length

    Wrap paragraphs around 80 characters so diffs stay small.

  • Consistent spacing

    Leave one blank line between headings, lists, and paragraphs for reliable rendering.

  • Use reference links

    Collect all outbound URLs at the bottom of long documents for easier editing.

  • Annotate code fences

    Language hints (```js, ```bash) unlock syntax highlighting across most renderers.

ADVERT

ADVERT

Markdown Cheatsheet - Syntax, Examples & Formatting Guide