Markdown Syntax

Markdown syntax with obsidian extension

Text formatting

Heading

# Heading 1

## Heading 2

### Heading 3

#### Heading 4

##### Heading 5

###### Heading 6
- [External Link](https://www.google.com)
- [[Internal Link]]
- [[Internal Link|Custom Name]]
- [[Internal Link#Heading|Custom Name]]

Image with Dynamic Size

- ![cloud image](https://go.dev/images/gophers/motorcycle.svg)
- ![[Go.svg]]

- ![cloud image|200](https://go.dev/images/gophers/motorcycle.svg)
- ![[Go.svg|200]]

Cloud Image with Dynamic Size

cloud image

Local Image with Dynamic Size

/Other/Go.svg

Syntax Highlight

package main

import "fmt"

func main() {
	fmt.Println("Hello, World!")
}

Callouts

Default title

Can callouts be nested?

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"