Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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: 3 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 (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2024-08-16T11:10:22.000Z (6 months ago)
- Last Synced: 2024-11-05T07:51:29.306Z (3 months ago)
- Topics: obsidian, obsidian-community, obsidian-md
- Homepage: https://ieshreya.github.io/Obsidian-Cheat-Sheet/
- Size: 48.8 KB
- Stars: 319
- Watchers: 4
- Forks: 46
- 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. If something's missing, add yours by raising an issue here ;)*### 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.
---
Word Formatting & Coding Blocks | Links, Quotes & Tables
:-------------------------:|:-------------------------:|
---
# Markdown Cheat Sheet đģ
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*** ```
---
**==Highlights==**
``` ==this text is highlighted==```
---
**```Coding Blocks```**
``` By putting 3 (`) signs before and after the code. ```
---
**[[Links]]**
``` [[link]](sources) ```
---
> Quotes/ Blockquotes
``` > this is a quote. ```
---
Table Cell A | Table Cell B
---- | ----```
Table Cell A | Table Cell B
---- | ----
```
---
# Shortcuts â¨ī¸### General Shortcuts đšī¸
Shortcut Key | Functions
:-----------------:|-----------------:
Ctrl + S|Editor: Saves the file
Ctrl + N| Creates a new note
Ctrl + P| Open command pallete
Ctrl + O | Opens Quick Switcher
Ctrl + Shift + F | Search in all files
Ctrl + G | Opens graph view
Ctrl + Alt + â | Navigate Back
Ctrl + Alt + â | Navigate forth
Ctrl + F | Searches current file
Ctrl + E | Toggle edit/preview modes
Ctrl + , | Open Settings
Ctrl + Tab | Next tab
Ctrl + Shift + Tab | Previous tab
Alt + Tab | Next App
Alt + Shift + Tab | Previous App
Win + Tab | Task View
Win + Shift + Tab | Next Window### Editing Shortcuts đšī¸
Shortcut Key | Functions
:-----------------:|-----------------:
Ctrl + B | Bold Selected Text
Ctrl + I | Italicize Selected Text
Ctrl + K | Insert External Link to Selected Text
Ctrl + ] | Indent
Ctrl + [ | Unindent
Ctrl + D |Delete current line
Ctrl + V | Duplicate current line
Ctrl + Click | Open Note in Current Panel via Link
Ctrl + Shift + Click | Open Note in New Panel via Link
Ctrl + P (Cmd + P on Mac) | Quick Search
Ctrl + N (Cmd + N on Mac) | New Note
Ctrl + Shift + D (Cmd + Shift + D on Mac) | Create a Daily Note
Ctrl + / (Cmd + / on Mac) | Toggle Command Palette
Ctrl + E (Cmd + E on Mac) | Open Graph View
Ctrl + Click (Cmd + Click on Mac) | Open Link in New Pane> You've reached the end now. Hope this helps! :)