tree2md 0.8.1

Like the tree command, but outputs in Markdown. Optionally embed file contents as code blocks.
1
2
3
4
5
6
7
8
9
## Development
- Unit Test: `cargo test`
- Tests with Integration Test: `cargo test --test '*'`
- Build: `cargo build`
- Format: `cargo fmt`
- Lint: `cargo clippy -- -D warnings`

## Rules
- For debugging, use integration tests in `tests/` instead of using `/tmp` directory in bash command and use `tests/*.rs` as integration tests. Read some tests to understand.