A command line tool for drawing tree structures with ascii characters.
Install from crates.io https://crates.io/crates/astree with cargo install astree
.
Create an input file following the markdown syntax, such as:
```
```
Here, an extra #
indicates a nested child.
And saved that in a file, such as tree.md
.
With an input file examples/with_grandchildren_0.md
, we can render the tree like this:
astree horizontal -i examples/with_grandchildren_0.md
With an input file examples/with_grandchildren_1.md
, we can render the tree like this:
astree vertical --input examples/with_grandchildren_1.md
┌──────┐
│ Root │
└──┬───┘
┌────┴────┐
│ Child 1 │
└────┬────┘
┌────────┴────────┐
┌──────┴───────┐ ┌──────┴───────┐
│ Grandchild 1 │ │ Grandchild 2 │
└──────────────┘ └──────────────┘
With thick lines:
astree vertical --input examples/with_grandchildren_1.md --style thick
┏━━━━━━┓
┃ Root ┃
┗━━┳━━━┛
┏━━━━┻━━━━┓
┃ Child 1 ┃
┗━━━━┳━━━━┛
┏━━━━━━━━┻━━━━━━━━┓
┏━━━━━━┻━━━━━━━┓ ┏━━━━━━┻━━━━━━━┓
┃ Grandchild 1 ┃ ┃ Grandchild 2 ┃
┗━━━━━━━━━━━━━━┛ ┗━━━━━━━━━━━━━━┛
With double lines:
astree vertical --input examples/with_grandchildren_1.md --style double
╔══════╗
║ Root ║
╚══╦═══╝
╔════╩════╗
║ Child 1 ║
╚════╦════╝
╔════════╩════════╗
╔══════╩═══════╗ ╔══════╩═══════╗
║ Grandchild 1 ║ ║ Grandchild 2 ║
╚══════════════╝ ╚══════════════╝
With special top connection:
astree vertical --input examples/with_grandchildren_1.md --top-connection ▼
┌──────┐
│ Root │
└──┬───┘
┌────▼────┐
│ Child 1 │
└────┬────┘
┌────────┴────────┐
┌──────▼───────┐ ┌──────▼───────┐
│ Grandchild 1 │ │ Grandchild 2 │
└──────────────┘ └──────────────┘
With chest style:
astree vertical --input examples/with_grandchildren_2.md --style chest
╔━━━━━━╗
┃ Root ┃
╚━━┳━━━╝
╔━━━━━━━━━━━┻━━━━━━━━━━━╗
╔━━━┻━━━╗ ╔━━━┻━━━╗
┃ Left ┃ ┃ Right ┃
┃ Child ┃ ┃ Child ┃
╚━━━┳━━━╝ ╚━━━┳━━━╝
╔━━━━━━━┻━━━━━━━╗ ╔━━━━━┻━━━━━━╗
╔━━━━━┻━━━━━━╗ ╔━━━━━┻━━━━━━╗ ┃ Right ┃
┃ Grandchild ┃ ┃ Grandchild ┃ ┃ Grandchild ┃
┃ (1) ┃ ┃ (2) ┃ ╚━━━━━━━━━━━━╝
╚━━━━━━━━━━━━╝ ╚━━━━━━━━━━━━╝
With balloon style:
astree vertical --input examples/with_children_2.md --style balloon --top-connection ☐ --bottom-connection ┰
╭───────────╮
│ Root Node │
╰─────┰─────╯
╭────┴─────╮
╭───☐───╮ ╭───☐───╮
│ Child │ │ Child │
│ (1) │ │ (2) │
╰───────╯ ╰───────╯
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
See details in https://www.rust-lang.org/tools/install.
Here are some example build and run commands:
$ cargo run -- horizontal -i examples/with_grandchildren_3.md
.
└─ Root
├─ Child 1
│ ├─ Grandchild 1.1
│ └─ Grandchild 1.2
├─ Child 2
│ └─ Child 2.1
└─ Child 3
$ cargo run -- vertical -i examples/with_grandchildren_1.md
┌──────┐
│ Root │
└──┬───┘
┌────┴────┐
│ Child 1 │
└────┬────┘
┌────────┴────────┐
┌──────┴───────┐ ┌──────┴───────┐
│ Grandchild 1 │ │ Grandchild 2 │
└──────────────┘ └──────────────┘
Install local version:
git clone git@github.com:yzhong52/ascii_tree.git
cd ascii_tree
cargo install --path .
Install from https://crates.io/crates/astree:
cargo install astree
By default, it will be installed under /Users/<YOUR_USERNAME>/.cargo/bin/astree
.
cargo test
cargo add <DEP>[@<VERSION>] ...
e.g.
cargo add num
Step 1. bump version in Cargo.toml
Step 2. publish
cargo publish --token <TOEKN>