Markdown Syntax
Markdown syntax with obsidian extension
#Text formatting
- Bold:
**Bold** - Italic:
*Italic* Code: `Code`Strikethrough:~Strikethrough~- highlight:
==highlight==
#Heading
# Heading 1
## Heading 2
### Heading 3
#### Heading 4
##### Heading 5
###### Heading 6
#Link
- [External Link](https://www.google.com)
- [[Internal Link]]
- [[Internal Link|Custom Name]]
- [[Internal Link#Heading|Custom Name]]
#Image with Dynamic Size
- 
- ![[Go.svg]]
- 
- ![[Go.svg|200]]
Cloud Image with Dynamic Size
Local Image with Dynamic Size
#Syntax Highlight
package main
import "fmt"
func main() {
fmt.Println("Hello, World!")
}
#Callouts
Default title
Can callouts be nested?
Yes!, they can. And collapsed!
You can even use multiple layers of nesting.
Note
Aliases: "note"
Abstract
Aliases: "abstract", "summary", "tldr"
Info
Aliases: "info"
Todo
Aliases: "todo"
Tip
Aliases: "tip", "hint", "important"
Success
Aliases: "success", "check", "done"
Question
Aliases: "question", "help", "faq"
Warning
Aliases: "warning", "attention", "caution"
Failure
Aliases: "failure", "missing", "fail"
Danger
Aliases: "danger", "error"
Bug
Aliases: "bug"
Example
Aliases: "example"
Quote
Aliases: "quote", "cite"