No description
Find a file
2022-01-03 10:56:00 +00:00
src remove redundant codes 2022-01-03 10:56:00 +00:00
.editorconfig Initial commit 2021-12-30 16:52:31 +09:00
.eslintignore Initial commit 2021-12-30 16:52:31 +09:00
.eslintrc.js Initial commit 2021-12-30 16:52:31 +09:00
.gitignore rename static file -> binary file 2022-01-03 02:12:54 +00:00
.prettierrc Initial commit 2021-12-30 16:52:31 +09:00
.static_file_list.txt rename static file -> binary file 2022-01-03 02:12:54 +00:00
esbuild.config.mjs Initial commit 2021-12-30 16:52:31 +09:00
manifest.json rename static file -> binary file 2022-01-03 02:12:54 +00:00
package.json can pass cdate 2021-12-31 16:16:21 +09:00
README.md Update README.md 2022-01-03 19:45:48 +09:00
tsconfig.json can pass cdate 2021-12-31 16:16:21 +09:00
versions.json modify versions.json 2022-01-02 12:25:29 +00:00

Binary File Manager Plugin

This plugin detects new binary files in the vault and create markdown files with metadata.

By using metadata files, you can take advantage of the rich functionality provied by Obsidian such as

  • full text search,
  • tags and aliases,
  • internal links, and so on.

For example, if you add tags to the metadata of an image file, then you can indirectly access the image file by tag-searching (and following an internal link in the metadata).

Quick start

  1. Install and enable this plugin.
  2. Add a static file like sample.pdf to your vault.

Then you will find a meta data file INFO_sample_PDF.md in the root directory. You can customize the new file location and the templates for names and contents of metadata files.

Format syntax

You can use the following syntax to format the names and contents of metadata files.

Date

Syntax Description
{{CDATE:<FORMAT>}} Creation time of the static file.
{{NOW:<FORMAT>}} Current time.

Path

Syntax Description
{{PATH}} Path of a static file.
{{FULLNAME}} Name of a static file.
{{NAME}} Name of a static file with extension removed.
{{EXTENSION}} Extension of a static file.
  • You can choose between uppercase and lowercase letters by adding suffixes :UP and :LOW, respectively. For example, {{NAME:UP}}.

Templater plugin support

You can also use Templater plugin to format your meta data files. Just install Templater plugin and set Use Templater in the setting tab of Binary File Manager.