cmds.fun

Markdown Cheat Sheet

One input, one button. Paste text or a simple directive, generate Markdown, and preview it. Scroll for a full Markdown cheat sheet with ready-to-copy examples.

builder
input
snippet
preview
Type your text, then click a button to generate the Markdown snippet. For images and links, use the format: text | url.
about markdown helper

Markdown Helper keeps things minimal. Enter plain text, or use a short prefix to generate headings, lists, images, links, quotes, or code blocks. The output is ready to paste into Markdown files, documentation, or blog posts.

markdown cheat sheet
headings
# Heading 1
## Heading 2
### Heading 3
#### Heading 4
emphasis
**bold text**
*italic text*
***bold + italic***
~~strikethrough~~
lists
- Unordered item
- Another item
  - Nested item

1. Ordered item
2. Another item
links
[cmds.fun](https://cmds.fun)
[Link with title](https://cmds.fun "Visit cmds.fun")
https://cmds.fun
images
![Alt text](https://example.com/image.png)
![Logo](https://cmds.fun/logo.png "Logo")
blockquotes
> Quote line one
> Quote line two
>
> — Author
code
Inline `code` stays in a sentence.

```js
const hello = "world";
console.log(hello);
```
tables
| Command | Description |
| --- | --- |
| json-pretty | Format JSON |
| hash | Generate hashes |
task lists
- [x] Shipping done
- [ ] Write docs
- [ ] Add screenshots
horizontal rules
---
***
___
line breaks
First line  
Second line (two spaces above)

New paragraph after blank line.
escaping
\*Not italic\*
\# Not a heading
\- Not a list item

Copy any snippet above as a Markdown cheat sheet reference. Use the generator to tailor text quickly, then paste into README files, documentation, or blog posts.