All Projects → aviskase → obsidian-link-indexer

aviskase / obsidian-link-indexer

Licence: Unlicense license
No description or website provided.

Programming Languages

typescript
32286 projects
javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to obsidian-link-indexer

obsidian-text-format
Format seleted text in Obsdidian.md
Stars: ✭ 49 (+172.22%)
Mutual labels:  obsidian-plugin, obsidian-md
obsidian-hider
Hide Obsidian UI elements such as tooltips, status, titlebar and more
Stars: ✭ 106 (+488.89%)
Mutual labels:  obsidian-plugin, obsidian-md
obsidian-jump-to-link
Quick jump between links using hotkeys
Stars: ✭ 57 (+216.67%)
Mutual labels:  obsidian-plugin, obsidian-md
obsidian-link-favicon
See the favicon for a linked website.
Stars: ✭ 46 (+155.56%)
Mutual labels:  obsidian-plugin, obsidian-md
obsidian-editor-shortcuts
Obsidian plugin to add keyboard shortcuts commonly found in code editors such as Visual Studio Code (vscode) or Sublime Text
Stars: ✭ 74 (+311.11%)
Mutual labels:  obsidian-plugin, obsidian-md
ObsidianBookmark
Chrome extension and nodejs server to allow web clipping to Obsidian.
Stars: ✭ 122 (+577.78%)
Mutual labels:  obsidian-plugin, obsidian-md
obsidian-text-expand
A simple text expand plugin for Obsidian.md
Stars: ✭ 122 (+577.78%)
Mutual labels:  obsidian-plugin, obsidian-md
obsidian-core-search-assistant-plugin
An Obsidian plugin to enhance built-in search: keyboard interface, card preview, bigger preview
Stars: ✭ 59 (+227.78%)
Mutual labels:  obsidian-plugin, obsidian-md
obsidian-advanced-appearance
Change Obsidian colors, fonts and other cosmetic settings
Stars: ✭ 35 (+94.44%)
Mutual labels:  obsidian-plugin, obsidian-md
hotkey-helper
Easily see and access any Obsidian plugin's options pane or hotkey assignments (including conflicts) from the Community Plugins tab
Stars: ✭ 48 (+166.67%)
Mutual labels:  obsidian-plugin, obsidian-md
notetweet obsidian
Post tweets directly from Obsidian.
Stars: ✭ 29 (+61.11%)
Mutual labels:  obsidian-plugin, obsidian-md
obsidian-smart-typography
Converts quotes to curly quotes, dashes to em dashes, and periods to ellipses
Stars: ✭ 81 (+350%)
Mutual labels:  obsidian-plugin, obsidian-md
obsidian-journey-plugin
Discover the story between your notes in Obsidian
Stars: ✭ 93 (+416.67%)
Mutual labels:  obsidian-plugin, obsidian-md
quick-explorer
Perform file explorer operations (and see your current file path) from the Obsidian.md title bar
Stars: ✭ 119 (+561.11%)
Mutual labels:  obsidian-plugin, obsidian-md
obsidian-embedded-note-titles
No description or website provided.
Stars: ✭ 50 (+177.78%)
Mutual labels:  obsidian-plugin, obsidian-md
obsidian-url-into-selection
Paste URLs into selected text "notion style"
Stars: ✭ 129 (+616.67%)
Mutual labels:  obsidian-plugin, obsidian-md
note-folder-autorename
Obsidian plugin to support folder-overview notes by keeping their folder in sync
Stars: ✭ 36 (+100%)
Mutual labels:  obsidian-plugin, obsidian-md
obsidian-metatemplates
Take advantage of YAML front-matter in generating notes from templates (for obsidian.md)
Stars: ✭ 68 (+277.78%)
Mutual labels:  obsidian-plugin, obsidian-md
slated-obsidian
Task management in Obsidian.md
Stars: ✭ 123 (+583.33%)
Mutual labels:  obsidian-plugin, obsidian-md
obsidian-imgur-plugin
Pastes images right to imgur.com
Stars: ✭ 72 (+300%)
Mutual labels:  obsidian-plugin, obsidian-md

obsidian-link-indexer

This plugin for Obsidian generates index notes with links based on various conditions.

Read changelog here.

WARNING: I'm no longer using this plugin myself ¯\_(ツ)_/¯

Usage

Plugin adds commands and settings for each type of index note.

You can have as many settings presets as you want, for example, one used links report for all data and another for non-existing files only.

To configure the plugin, go to plugin settings and add a preset with desired configuration. After that you'll see a new command added to the palette with the name Link indexer: Used links - {name of the preset}.

Used links

Vault had:

  • note A with links B and C
  • note B with link C
  • note C with link to B and non-existing note X

Command will create an index note (check path in settings) with the content:

2 [[B]]
2 [[C]]
1 [[X]]

Output options

Include embeds counts both ![[file]] and [[file]] links. When disabled, it will count only [[file]] links.

Nonexistent files only. When enabled, the example above would generate a note with only 1 [[X]].

Strict line breaks corresponds to the same Editor setting: "off" = one line break, "on" = two line breaks.

On:

2 [[B]]

2 [[C]]

1 [[X]]

Off:

2 [[B]]
2 [[C]]
1 [[X]]

Link to files. When "on" the output file will use wiki-links to files. Disable if you don't want to pollute graph with it.

On:

2 [[B]]
2 [[C]]
1 [[X]]

Off:

2 B
2 C
1 X

Exclude links from files and Exclude links to files allow skipping files during indexing. Both accept regex patterns. If you need several excludes, add them on separate lines. Exclusion is checked only for existing files and only for filename without path.

For example, if exclude from is set to B, the plugin won't count any links in this file and the output would be:

2 [[B]]
1 [[C]]
1 [[X]]

If exclude to is set to B, then any links to this file will be ignored, and the output will be:

2 [[C]]
1 [[X]]

If both exclude from and to are set to B, the the output will be:

1 [[C]]
1 [[X]]

Exclude links from paths and Exclude links to paths works similarly to filename exclusion, but accept glob patterns. Check picomatch docs for detailed information. Useful, when you want to exclude some directories, for example, exclude everything from directory Dailies is Dailies/**/*.

Compatibility

v0.0.1 was developed against Obsidian v0.9.12, but it may work in earlier versions (v0.9.7+).

Next releases will continue to target v0.9.12+.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].