Skip to main content

Posts

Showing posts from September, 2025

Obsidian Cheat Sheet - Part 1

Obsidian uses Markdown, a lightweight markup language, to format text. : Headings : Use # for headings. # Heading 1 ## Heading 2 ### Heading 3 Text Styling : Bold: **bold** → bold Italic: *italic* → italic Bold & Italic: ***bold italic*** → bold italic Strikethrough: ~~strikethrough~~ → strikethrough Highlight: ==highlight== → ==highlight== Lists : Unordered: - item or * item Ordered: 1. item Checklist: - [ ] item Code Blocks : Inline: `code` Block: ``` code block - **Links** : - Internal: `[[Note Name]]` - External: `[Link Text](http://url.com)` - **Blockquotes** : `> quote` - **Tables** : | Header 1 | Header 2 | |----------|----------| | Row 1 | Data | | Row 2 | Data | --- ### ⚡ Obsidian Shortcuts Boost your productivity with these keyboard shortcuts: - **General** : - `Ctrl + P` (or `Cmd + P` on Mac): Open Command Palette - `Ctrl + O` : Open Quick Switcher...