https://github.com/ieshreya/Obsidian-Cheat-Sheet
all the basic cheatsheets you need to get started to make notes in obsidian.
https://github.com/ieshreya/Obsidian-Cheat-Sheet
obsidian obsidian-community obsidian-md
Last synced: 7 months ago
JSON representation
all the basic cheatsheets you need to get started to make notes in obsidian.
- Host: GitHub
- URL: https://github.com/ieshreya/Obsidian-Cheat-Sheet
- Owner: ieshreya
- License: mit
- Created: 2021-03-14T08:39:47.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2024-12-23T08:06:22.000Z (12 months ago)
- Last Synced: 2025-02-28T11:02:29.905Z (9 months ago)
- Topics: obsidian, obsidian-community, obsidian-md
- Homepage: https://ieshreya.github.io/Obsidian-Cheat-Sheet/
- Size: 54.7 KB
- Stars: 381
- Watchers: 5
- Forks: 52
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-starz - ieshreya/Obsidian-Cheat-Sheet - all the basic cheatsheets you need to get started to make notes in obsidian. (Others)
- jimsghstars - ieshreya/Obsidian-Cheat-Sheet - all the basic cheatsheets you need to get started to make notes in obsidian. (Others)
README
# đŽ Obsidian cheat sheet and shortcut keys
*This repository contains all the basic cheatsheets you need to get started to make notes in [obsidian](https://obsidian.md/). If something's missing, add yours by raising an issue here :)*
> I am using the [Things theme](https://github.com/colineckert/obsidian-things) for this tutorial.
### Quick Tips
- To Search for a specific note: Use Ctrl + P (Cmd + P on Mac).
- For Internal Links: Use `[[note name]]` to create internal links to other notes.
- For External Links: Use `[Text](URL)` to create external links.
- For Bullet Points: Use `-`, `*`, or `1`.
- For Headings: Use `#` (e.g., # Heading 1, ## Heading 2).
- For Code Blocks: Wrap text in triple backticks `(```)`.
- For Embeds: Use `![[note name]]` to embed another note in your current note.
---
### [Check the full cheatsheet here](https://github.com/ieshreya/Obsidian-Cheat-Sheet/blob/main/cheatsheet.md)
Word Formatting, Lists & Blockquotes | Links, Code Blocks, Tables & Footnotes |
| - | - |
 | 
---
đģ Markdown Syntax
Quick Overview
```
# Heading 1
## Heading 2
--- Spacer
- Bullet Points
- [x] Checklist
**Bold**
*Italic*
***Italic Bold***
==Highlights==
```Coding Blocks```
[[Links]](Sources)
> Quotes/ Blockquotes
Table Cell A | Table Cell B
---- | ----
```
⨠Detailed Cheat Sheet
# Heading 1
```
# Heading 1
```
## Heading 2
```
## Heading 2
```
**Line Break**
```
---
```
- Bullet Points
```
- Bullet
```
- [X] Checklist
```
- [x] list
```
**Bold**
```
**text**
```
*Italic*
```
*text*
```
***Italic Bold***
```
***text***
```
~~Strikethrough~~
```
~~this text is crossed out~~
```
**==Highlights==**
```
==this text is highlighted==
```
**```Code Blocks```**
```
By putting 3 (```) signs before and after the code.
``` code ```
```
**[[Links]]**
```
[link](sources)
```
Blockquotes
> Quotes/ Blockquotes
```
> this is a quote.
```
Tables
Table Cell A | Table Cell B
---- | ----
```
| Table Cell A | Table Cell B |
---- | ----
```
---
### đšī¸ General & Editing Shortcuts
| Shortcut Key (General) | Functions | Shortcut Key (Editing) | Functions |
|---|---|---|---|
| Ctrl + S | Editor: Saves the file | Ctrl + B | Bold Selected Text |
| Ctrl + N | Creates a new note | Ctrl + I | Italicize Selected Text |
| Ctrl + P | Open command pallete | Ctrl + K | Insert External Link to Selected Text |
| Ctrl + O | Opens Quick Switcher | Ctrl + ] | Indent |
| Ctrl + Shift + F | Search in all files | Ctrl + [ | Unindent |
| Ctrl + G | Opens graph view | Ctrl + D | Delete current line |
| Ctrl + Alt + â | Navigate Back | Ctrl + V | Duplicate current line |
| Ctrl + Alt + â | Navigate forth | Ctrl + Click | Open Note in Current Panel via Link |
| Ctrl + F | Searches current file | Ctrl + Shift + Click | Open Note in New Panel via Link |
| Ctrl + H | Find/Replace in current file |Ctrl + P (Cmd + P on Mac) | Quick Search |
| Ctrl + E | Toggle edit/preview modes | Ctrl + N (Cmd + N on Mac) | New Note |
| Ctrl + , | Open Settings | Ctrl + Shift + D (Cmd + Shift + D on Mac) | Create a Daily Note |
| Ctrl + Tab | Next tab | Ctrl + / (Cmd + / on Mac) | Toggle Command Palette |
| Ctrl + Shift + Tab | Previous tab | Ctrl + E (Cmd + E on Mac) | Open Graph View |
| Alt + Tab | Next App | Ctrl + Click (Cmd + Click on Mac) | Open Link in New Pane |
| Alt + Shift + Tab | Previous App | | |
| Win + Tab | Task View | | |
| Win + Shift + Tab | Next Window | | |
### You've reached the end now. Hope this helps!