4.2 KiB
| auto_generated | created | manual_updated_at | modified | name | status | tags | type | ||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| true | 2026-05-19 | 2026-05-19 | 2026-05-19 | User_Manual | active |
|
sop |
Obsidian Second Brain: User Manual
What This Tool Does
This Obsidian Vault configuration utilizes a suite of specialized plugins to transform standard markdown notes into a dynamic, time-aware knowledge base. The core functionality revolves around Periodic Notes (Daily, Weekly, Monthly, Quarterly, Yearly), Calendar Integration, Task Management, and Visual Diagramming. It allows users to link thoughts across time and visualize complex relationships.
Who Uses It
- Knowledge Workers: Who need to manage complex projects and ideas.
- Personal Organizers: Who rely on daily logging and task tracking.
- Developers/Technical Users: Who benefit from code-block diagrams (Mermaid) and structured data handling.
How to Access
- Open Obsidian.
- Ensure the following plugins are installed and enabled in
Settings > Community Plugins:nldates-obsidianmermaid-toolsobsidian-tasks-plugincalendarobsidian-local-images-plus
- The Calendar plugin will automatically appear in your left sidebar.
Main Workflows
1. Managing Periodic Notes (Daily/Weekly/Monthly)
This system relies on the nldates-obsidian and calendar plugins to automatically generate notes based on date formats.
Default Formats:
- Daily:
YYYY-MM-DD(e.g., 2023-10-27) - Weekly:
gggg-[W]ww(e.g., 2023-W43) - Monthly:
YYYY-MM(e.g., 2023-10) - Quarterly:
YYYY-[Q]Q(e.g., 2023-Q4) - Yearly:
YYYY(e.g., 2023)
Steps:
- Click a date on the Calendar sidebar to open/create the corresponding Daily Note.
- The plugin checks for
periodic-notessettings first. If unavailable, it falls back to internal Obsidiandaily-notesorweekly-notesplugin settings. - Use the calendar view to navigate between weeks/months seamlessly.
2. Creating and Tracking Tasks
The obsidian-tasks-plugin manages tasks embedded in your notes.
Supported Syntax: Use checkboxes with specific tags for task metadata.
- [ ] Task Name 📅2023-10-27 🔁every day
Steps:
- Write a task in any note using
- [ ]. - Add metadata if needed (e.g.,
📅for due date,🔁for recurrence). - View all tasks across your vault in the Tasks view panel.
3. Visualizing Data with Mermaid
The mermaid-tools plugin allows you to render diagrams directly from code blocks.
Supported Diagrams:
- Flowchart:
flowchart LR - Class Diagram:
class - Entity Relationship:
erDiagram - Gantt Chart:
gantt - Git Graph:
gitGraph - Sequence Diagram:
sequenceDiagram - Pie Chart:
pie - Mindmap:
mindmap
Steps:
- Insert a code block labeled
mermaid. - Write the diagram syntax.
- Switch to
Live PrevieworReadingmode to see the rendered graph.
Example:
flowchart LR
Start --> Stop
4. Managing Local Images
The obsidian-local-images-plus plugin ensures images are stored locally rather than linked externally.
Steps:
- Paste an image into a note.
- The plugin automatically copies the image to your vault's attached folder.
- The note will reference the local file path.
FAQ
Q: What happens if I don't have periodic-notes installed?
A: The calendar and nldates-obsidian plugins will fall back to Obsidian's core daily-notes or weekly-notes settings for folder paths and date formats.
Q: How do I customize the date format for weekly notes?
A: Update the settings in the nldates-obsidian plugin or your core weekly-notes plugin settings. The default is gggg-[W]ww.
Q: Can I use Mermaid in source mode? A: Yes, you can edit the Mermaid syntax directly, but the visual graph only renders in Preview or Reading mode.
Q: Why are my tasks not appearing?
A: Ensure the obsidian-tasks-plugin is enabled and that your task syntax includes the required checkbox - [ ]. Check the plugin settings for any filtering rules.