๐ฒ ๐ฉโฌ๏ธ 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>;
}
Linksโ
[link-text](src)
Imagesโ


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โ
| type | description |
|---|---|
| feat | A 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.