No description
Find a file
2025-08-07 16:49:32 +08:00
src have obsidian manage component lifecycle 2025-06-09 22:10:06 +08:00
.editorconfig add plugin 2025-05-10 00:21:19 +08:00
.eslintignore add plugin 2025-05-10 00:21:19 +08:00
.eslintrc add plugin 2025-05-10 00:21:19 +08:00
.gitignore add plugin 2025-05-10 00:21:19 +08:00
demo.png update demo picture 2025-05-10 00:49:03 +08:00
esbuild.config.mjs add plugin 2025-05-10 00:21:19 +08:00
LICENSE add plugin 2025-05-10 00:21:19 +08:00
manifest.json update manifest.json 2025-05-10 01:00:24 +08:00
package.json add plugin 2025-05-10 00:21:19 +08:00
README.md Update README.md 2025-08-07 16:49:32 +08:00
tsconfig.json add plugin 2025-05-10 00:21:19 +08:00

Tree Diagram

This is an Obsidian plugin that converts tab-indented text to a tree diagram.

Example

Input:

```tree
/
	home
	boot
	var
		log
	usr
		local
			bin
			sbin
			lib
		bin
			cat
		sbin
	etc
```

Output:

/
├── home
├── boot
├── var
│   └── log
├── usr
│   ├── local
│   │   ├── bin
│   │   ├── sbin
│   │   └── lib
│   ├── bin
│   │   └── cat
│   └── sbin
└── etc

Installation

Install via Obsidian

  1. Go to Obsidian Settings -> Community Plugins
  2. Click on "Browse" and search for "Tree Diagram"
  3. Install and enable the plugin

Install via GitHub

  1. Go to Latest Release
  2. Download the source code archive and extract to <vault>/.obsidian/plugins/
  3. Reload Obsidian
  4. Go to Settings -> Community Plugins -> Installed Plugins, enable the plugin