Learn Markdown!

A simple guide and playground for high school students

Markdown Cheatsheet

Headings

Use hash symbols (#) to create headings. More hashes mean smaller headings.

# Heading 1
## Heading 2
### Heading 3

Heading 1

Heading 2

Heading 3

Text Styles

Make text **bold** using double asterisks or double underscores, and *italic* using single asterisks or single underscores. Use backticks for `inline code`.

**This is bold** or __This is bold__
*This is italic* or _This is italic_
`inline code`

This is bold or This is bold

This is italic or This is italic

inline code

Blockquotes

Use the greater-than sign (>) to create blockquotes, great for citing sources or emphasizing text.

> This is a blockquote.
> It can span multiple lines.

This is a blockquote.
It can span multiple lines.

Lists

Create ordered lists with numbers and unordered lists with asterisks (*), hyphens (-), or plus signs (+).

1. First item
2. Second item
* Unordered item 1
* Unordered item 2
  1. First item
  2. Second item
  • Unordered item 1
  • Unordered item 2

Code Blocks

For larger blocks of code, use three backticks (```) at the beginning and end.

```javascript
function helloWorld() {
  console.log("Hello, Markdown!");
}
```
function helloWorld() {
  console.log("Hello, Markdown!");
}

Links

Create links by putting the link text in square brackets and the URL in parentheses.

[Google](https://www.google.com)

Images

Embed images using an exclamation mark, alt text in square brackets, and the image URL in parentheses.

![Bulma CSS](bulma.png)
Bulma CSS

Added by: GamingHub-17
Posted in: Bulma/Gallery Wild Rider Suit
Source: Dragon Ball Fandom Wiki


Live Playground