Obsidian School

Obsidian.md Markdown Cheat Sheet

**This is some bold text**
*This is italicized text*
> Block Quote

There is no native way to underline in obsidian.md. However, you can use HTML to underline your text to do so you can use the following code:

<u>This text will be underlined</u>

Lists and Checklists

1. This
2. is an
3. Ordered list
  1. Indent by pressing tab
- This
- is an
- Ordered list
  - Indent by pressing tab
- [] This
- [] is an
- [] Ordered list
  - [] Indent by pressing tab

Linking, Aliases and Embedding

[[Page to link to]]
[[Page Link^block to link to]]
[[Page Link#The Heading]]
[[Page Link|Alias]]
[text](https://urltolinkto.com)
![[Page Name]]
![[Page Name^block to link to]]
![[Page Name#heading to link to]]

Headings and Horizontal Rules

# Heading 1
## Heading 2
### Heading 3
#### Heading 4
##### Heading 5
###### Heading 6
This is some text
---

Code Blocks / Code Fences

```html
some code here
```
```javascript
var myVar = 1;
```

Tables

| Syntax      | Description |
| ----------- | ----------- |
| Header      | Title       |
| Paragraph   | Text        |

Note: we highly recommend you install a plugin to assist with tables.

Footnotes

Text with foot note[^1]

lorem ipsum

[^1]: Footnote
You can also insert footnotes directly into text like this:  
This is some text. Some More text
This text has a foot note ^[Foot Note Text]

Embed Image

![[picture.jpg]]
Learn More

Discover Similar Lessons

What is Obsidian.md?

Obsidian.md is a markdown text editor. It is different from other markdown editors because it has jumped on the linked thought band wagon. “Linked

Read More

Obsidian Basics

Learn about basic Markdown formatting and other basic Obsidian.md features.

Obsidian Intermediate

Learn about intermediate Obsidian.md features such as Dataview, search querying, yaml and metafields.

Obsidian PKM

Learn about Personal Knowledge Management (PKM) concepts and how to implement these concepts in your own system.