Heading 1
heading 2
heading 3
heading 4
heading 5
heading 6
Plain Text
# Heading 1
## heading 2
### heading 3
#### heading 4
##### heading 5
###### heading 6
Line
Plain Text
---
Block quotes
Plain Text
> Block quotes
breakline
Plain Text
<br>
Warnings and special blocks
TitleContents
TitleContents
TitleContents
TitleContents
Plain Text
> [!NOTE] Title
> Contents
> [!INFO] Title
> Contents
> [!TIP] Title
> Contents
> [!WARNING] Title
> Contents
Embeded links or pictures
Plain Text
[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
Plain Text
[[markdown cheat sheet]]
![[markdown cheat sheet]]
Inline code
Plain Text
code blocsk
Synthax highlighting code block
C#
public static void hello() {
Console.WriteLine("Hello world");
}
Plain Text
Inline `code`
code block (remove the >)
> ```
> code block
> ```
synthax highlighting block (remove the >)
> ```cs
public static void hello() {
Console.WriteLine("Hello world");
}
> ```