Skip to main content

๐Ÿ‡ฒ ๐Ÿ‡ฉโฌ‡๏ธ Markdown Cheatsheet

Headingsโ€‹

# Heading 1

## Heading 2

### Heading 3

Formattingโ€‹

_italic_
**bold**
**_bold + italic_**

- list item
- sub-item
  • list item
    • sub-item

Code Formattingโ€‹

Inline codeโ€‹

`inline code`

Code blockโ€‹

```language
<code>
```

```jsx title="/components/HelloCodeTitle.js"
<code>
```
/components/HelloCodeTitle.js
function HelloCodeTitle(props) {
return <h1>Hello, {props.name}</h1>;
}
[link-text](src)

Imagesโ€‹

![alt-text](src)
![Figma](/img/figma.png)

Boxesโ€‹

:::note
change `note` to show different types
:::

:::note Custom Title
with a custom title
:::
note

change note to show different types

Custom Title

with a custom title

info

hello world

tip

hello world

caution

hello world

danger

hello world

Tablesโ€‹

typedescription
featA new feature
tip

Use tablesgenerator.com to generate markdown tables in a spreadsheet like format.

Folder Treesโ€‹

โ”œโ”€โ”€ public
โ”‚ โ”œโ”€โ”€ css
โ”‚ โ”‚ โ”œโ”€โ”€ **/*.css
tip

Run tree in your terminal to generate a tree of your current directory.