─── ❖ ── ✦ ── ❖ ───

Associated notes

This note is part of a series about how this blog is set up. See here for an overview.

C:\users\USERNAME\Obsidian\VAULTNAME\
 ├── .git
 │   └── ...
 ├── .obsidian
 │   └── ...
 ├── .github
 │   ├── sync.yml
 │   └── workflows
 │       └── sync.yml
 ├── .trash
 │   └── .gitkeep
 ├── private
 │   └── .gitkeep
 ├── templates
 │   └── blog.md
 ├── public
 │   ├── Topic1
 │   │   ├── attachments
 │   │   │   └── image.png
 │   │   └── blogpage1.md
 │   ├── Topic2
 │   │   └── blogpage2.md
 │   ├── tags
 │   │   └── tag1.md
 │   ├── zzz_static_files
 │   │   ├── my quartz config files
 │   │   │   ├── Version 1
 │   │   │   │   └── ...
 │   │   │   └── README.md
 │   │   └── Dataview.md
 │   └── index.md
 └── .gitignore
  • naming conventions for new files
  • make sure every file has an individual name script/plugin to check?

─── ❖ ── ✦ ── ❖ ───