davidsusu / tree-printer

Java library for visualizing tree structures in the command line
Apache License 2.0
39 stars 8 forks source link

documentation & export to DOT #12

Closed amryounis closed 1 year ago

amryounis commented 1 year ago

hi, where I could find the API doc? do you support exporting to dot format?

davidsusu commented 1 year ago

Currently, I don't host an API docs site. You can download it as a jar artifact from the Maven Central, or generate it locally using the javadoc gradle task.

There is no support for integration with Graphviz (or any other data structure library). If you are a Graphviz expert, I welcome any pull request related to this. Also, you can write your own tree implementation that prints DOT output.

amryounis commented 1 year ago

thank you