Ascii Tree

A command line tool for drawing tree structures with ascii characters.

Usage

Install from crates.io https://crates.io/crates/astree:

cargo install astree

Check out the help message:

``` $ astree -h
A command line tool for drawing tree structures with ascii characters

Usage: astree

Commands: vertical Print the tree virtually horizontal Print the tree horizontally help Print this message or the help of the given subcommand(s)

Options: -h, --help Print help information (use --help for more detail) -V, --version Print version information ```

For example, we can use it like this:

``` astree horizontal -i "$(cat << 'EOF'

Root

Child 1

Grandchild 1

Grandchild 2

EOF )" ```

Here, each additional # indicates a nested child.

Output:

Root └─ Child 1 ├─ Grandchild 1 └─ Grandchild 2

Input From File

Alternatively, we can also save the markdown file, such as tree.md.

```

Root

Child 1

Grandchild 1

Grandchild 2

```

And invoke the command like so:

astree horizontal -i tree.md

Output:

Root └─ Child 1 ├─ Grandchild 1 └─ Grandchild 2

Horizontal Tree

Example of drawing a horizontal tree:

$ astree horizontal -i examples/with_grandchildren_0.md Root ├─ Child 1 │ ├─ Grandchild 1.1 │ └─ Grandchild 1.2 ├─ Child 2 │ └─ Child 2.1 └─ Child 3

Example of drawing a tree with multiple root nodes: $ astree horizontal -i examples/multi_tree.md . ├─ Root 1 │ ├─ Child 1.1 │ │ ├─ Grandchild 1.1.1 │ │ └─ Grandchild 1.1.2 │ └─ Child 1.2 └─ Root 2 └─ Child 2.1

Vertical Tree

Example of drawing a vertical tree:

astree vertical --input examples/with_grandchildren_1.md ┌──────┐ │ Root │ └──┬───┘ ┌────┴────┐ │ Child 1 │ └────┬────┘ ┌────────┴────────┐ ┌──────┴───────┐ ┌──────┴───────┐ │ Grandchild 1 │ │ Grandchild 2 │ └──────────────┘ └──────────────┘

Example of drawing a forest with multiple root nodes:

$ astree vertical -i examples/multi_tree.md ┌────────┐ │ Root 1 │ └───┬────┘ ┌──────────────┴──────────────┐ ┌─────┴─────┐ ┌─────┴─────┐ │ Child 1.1 │ │ Child 1.2 │ └─────┬─────┘ └───────────┘ ┌──────────┴──────────┐ ┌────────┴─────────┐ ┌────────┴─────────┐ │ Grandchild 1.1.1 │ │ Grandchild 1.1.2 │ └──────────────────┘ └──────────────────┘ ┌────────┐ │ Root 2 │ └───┬────┘ ┌─────┴─────┐ │ Child 2.1 │ └───────────┘

Virtual Tree Styles

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 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 balloon2 ╭───────────╮ │ Root Node │ ╰─────¤─────╯ ╭────┴─────╮ ╭───¤───╮ ╭───¤───╮ │ Child │ │ Child │ │ (1) │ │ (2) │ ╰───────╯ ╰───────╯

Development

See development.md.