Directory Summary

by va9id
5
4
3
2
1
Score: 35/100
New Plugin

Description

This plugin has not been manually reviewed by Obsidian staff. Generate a summary note for any directory in your vault.

Reviews

No reviews yet.

Stats

stars
downloads
0
forks
0
days
NaN
days
NaN
days
0
total PRs
0
open PRs
0
closed PRs
0
merged PRs
0
total issues
0
open issues
0
closed issues
0
commits

Latest Version

Invalid date

Changelog

README file from

Github

Obisidan Directory Summary

Obsidian plugin allowing you to create a summary note for any directory in your vault in just one command.

Usage

If your vault looks like this:

obsidian/
├─ apples/
│  ├─ apple pie recipe.md
│  ├─ macintosh/
│  │  ├─ apple tart recipe.md
├─ bananas/
│  ├─ banana pudding recipe.md

Run the command "Generate directory summary" which will create a {folder}_summary.md summary file that looks like this:

# obsidian

## apples

- [[apple pie recipe]]

### macintosh

- [[apple tart recipe]]

## bananas

- [[banana pudding recipe]]

Features

  • File names appear in the summary as backlinks
  • Can configure the following settings in the extension:
    • Default naming scheme of the summary file
    • Max directory depth to include in summary file
    • Max amount of files to include in summary file per directory
    • Specify a file property to show it's value in the summary file next to the backlink
      • For ex: if a file "random.md" has a property "Title" with value "I love soccer" then when you generate the summary the list item will look like:
        • - [[random]] - I love soccer