Skip to content

Markdown

Easy — everyone uses thisGeneral Dev

ELI5 — The Vibe Check

Markdown is a simple way to format text using just plain characters. Put **asterisks** around a word and it becomes bold. Add a # at the start and it becomes a heading. GitHub, Notion, and basically everything on the internet renders Markdown.

Real Talk

Markdown is a lightweight markup language with plain-text formatting syntax that converts to HTML. Created by John Gruber in 2004, it is the standard format for README files, wikis, issue comments, and technical documentation.

Show Me The Code

# Heading 1
## Heading 2

**bold** and *italic*

- list item
- another item

`inline code`

```js
console.log("code block");

## When You'll Hear This

"Write the PR description in Markdown." / "The docs site is generated from Markdown files."

Made with passive-aggressive love by manoga.digital. Powered by Claude.