Popularity
5.3
Growing
Activity
6.4
-
269
4
8
Programming language: Go
License: BSD 2-clause "Simplified" License
Tags:
Miscellaneous
Uncategorized
gtree alternatives and similar packages
Based on the "Uncategorized" category.
Alternatively, view gtree alternatives based on common mentions on social networks and blogs.
CodeRabbit: AI Code Reviews for Developers
Revolutionize your code reviews with AI. CodeRabbit offers PR summaries, code walkthroughs, 1-click suggestions, and AST-based analysis. Boost productivity and code quality across all major languages with each PR.
Promo
coderabbit.ai

Do you think we are missing an alternative of gtree or a related project?
Popular Comparisons
README
gtree
Generate tree🌳 from Markdown or Programmatically. Provide CLI and Package for Go, output is JSON or YAML or TOML or tree command.
## Description
├── There are three ways to generate tree (CLI, Package(1), Package(2)). They are explained below.
├── CLI and Package(1)
│ ├── Given a Markdown file or format, the result of linux tree command is printed.
│ ├── Create Markdown file by referring to the file in the `testdata/` directory.
│ │ ├── Hierarchy is represented by hyphen and indentation.
│ │ └── Indentation should be unified by one of the following.
│ │ ├── Tab (default)
│ │ ├── Two spaces (required: `-ts`)
│ │ └── Four spaces (required: `-fs`)
│ ├── You can also output JSON (required: `-j`)
│ ├── You can also output YAML (required: `-y`)
│ └── You can also output TOML (required: `-t`)
├── Package(1)
│ └── You can customize branch format.
└── Package(2)
├── You can also generate a tree programmatically.
├── Markdown is irrelevant.
├── You can customize branch format.
└── You can also output JSON or YAML or TOML.
generated by cat testdata/sample0.md | gtree -fs