Post

Obsidian Markdown cheat sheets

Heading 1

heading 2

heading 3

heading 4

heading 5
heading 6
1
2
3
4
5
6
# Heading 1
## heading 2
### heading 3
#### heading 4
##### heading 5
###### heading 6


Line


1
---


Block quotes

1
> Block quotes


breakline

1
<br>


Warnings and special blocks

[!NOTE] Title Contents

[!INFO] Title Contents

[!TIP] Title Contents

[!WARNING] Title Contents

1
2
3
4
5
6
7
8
9
10
11
> [!NOTE] Title
> Contents

> [!INFO] Title
> Contents

> [!TIP] Title
> Contents

> [!WARNING] Title
> Contents


Links

Embeded links or pictures Picture

1
2
3
[Links](https://www.youtube.com)

![Picture](https://buffer.com/cdn-cgi/image/w=1000,fit=contain,q=90,f=auto/library/content/images/size/w1200/2023/09/instagram-image-size.jpg)


Linking notes & embedding linked notes

1
2
[[markdown cheat sheet]]
![[markdown cheat sheet]]


Inline code

1
code blocsk

Synthax highlighting code block

1
2
3
public static void hello() {
    Console.WriteLine("Hello world");
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
Inline `code`

code block (remove the >)
> ```
> code block
> ```

synthax highlighting block (remove the >)
> ```cs
public static void hello() {
    Console.WriteLine("Hello world");
}
> ```


This post is licensed under CC BY 4.0 by the author.