Basic Formatting

Headings

# H1
## H2
### H3
#### H4
##### H5
###### H6

H1

H2

H3

H4

H5
H6

Emphasis

*Italic*  or  _Italic_
**Bold**
***Bold Italic***  or  _**Bold Italic**_
~~Strikethrough~~
==Highlight==
[[example|Custom Link Text]] → Custom link text
- Bullet Points
- [x] Checklist

Italic or Italic Bold Bold Italic or Bold Italic Strikethrough Highlight Custom Link Text → Custom link text

  • Bullet Points
  • Checklist
  • Task completed
  • Task not completed

Lists

  • Unordered:
    • Item 1
    • Item 2
  • Ordered:
    1. Item 1
    2. Item 2

Colors

<font color="#cc241d"> Red Hexkode</font>
<font color="#ffbe0b"> Yellow Hexkode</font>
<font color="#fb5607"> Orange Hexkode</font>
<font color="#ff006e"> Pink Red Hexkode</font>
<font color="#9d4edd"> Purple Hexkode</font>
<font color="#3a86ff"> Blue Hexkode</font>
<font color="#8ac926"> Lime green Hexkode</font>

<font color= "crimson"> Red Hexkode</font> 
<font color="gold"> Yellow Hexkode</font> 
<font color="orangered"> Orange Hexkode</font> 
<font color="deepPink"> Pink Red Hexkode</font> 
<font color="blueviolet"> Purple Hexkode</font> 
<font color="cornflowerblue"> Blue Hexkode</font> 
<font color="limegreen"> Lime green Hexkode</font>

Red Hexkode Yellow Hexkode Orange Hexkode Pink Red Hexkode Purple Hexkode Blue Hexkode Lime green Hexkode

Red Hexkode Yellow Hexkode Orange Hexkode Pink Red Hexkode Purple Hexkode Blue Hexkode Lime green Hexkode

Blockquotes

> This is a blockquote.

This is a blockquote.

Horizontal Rule / Separator

---

[Link text](https://example.com/)

Link text

Images

![Alt text](image-url.jpg)

Alt text

Inline Code & Code Blocks

`Inline code`

Inline code

```language
Code block here

```language
Code block here

Footnotes

This is a footnote reference[^1]
 
[^1]: This is the footnote text.

This is a footnote reference1

Callouts

> [!note] Note Title
> 
> This is a note.
 
> [!tip] Tip Title
> 
> This is a tip.
 
> [!warning] Warning Title
> 
> This is a warning.
 
> [!caution] Caution Title
> 
> This is a caution.
 
> [!important] Important Title
> 
> This is important.

Callouts

Note

Abstract

Info

Tip

Question

Warning

Failure

Danger

Bug

Example

Quote



Aliases: `summary`, `tldr`

> [!note] Note Title This is a note.
> 

> [!tip] Tip Title This is a tip.
> 

> [!warning] Warning Title This is a warning.
> 

> [!caution] Caution Title This is a caution.
> 

> [!important] Important Title This is important.
> 

### Checklists

```md
- [x] Task completed
- [ ] Task not completed

Tables

| Header 1 | Header 2 | Header 3 |
| -------- | -------- | -------- |
| Cell 1   | Cell 2   | Cell 3   |
| Cell 4   | Cell 5   | Cell 6   |
Header 1Header 2Header 3
Cell 1Cell 2Cell 3
Cell 4Cell 5Cell 6

Lists

Unordered

- Item 1
  - Subitem 1
  - Subitem 2
- Item 2
  • Item 1
    • Subitem 1
    • Subitem 2
  • Item 2

Ordered

1. Item 1
2. Item 2
  1. Item 1
  2. Item 2

Hotkeys & Shortcuts

Notes:

  • # = Win (Windows key)
  • ! = Alt
  • ^ = Ctrl
  • - = Shift

Formatting Hotkeys

==Highlight== → Double equals
**Bold** → Double asterisks
_Italic_ → Single asterisk
 

Highlight → Double equals Bold → Double asterisks Italic → Single asterisk Custom Link Text → Custom link text

YAML Frontmatter

---
tags: 
  - project
  - work
  - notes
---

---
tags: [project, work, notes]
---

Math Notation (MathJax)

$ E = mc^2 $ (Inline)
$$
E = mc^2
$$ (Block)

(Inline)

E = mc^2 $$ (Block)

Footnotes

  1. This is the footnote text.
graph TD

Biology --> Chemistry

Comments

[//]: <> (Insert your comment here!)