文件名称:textree:漂亮的印刷嵌套树
文件大小:9KB
文件格式:ZIP
更新时间:2024-05-22 03:45:15
go golang formatting tree-structure prettyprinter
Textree textree是一个go软件包,可以轻松地用纯文本漂亮地打印嵌套的树。 安装 go get github.com/plouc/textree 用法 import ( "os" "github.com/plouc/textree" ) 构造一棵树: root := textree . NewNode ( "1" ) childA := textree . NewNode ( "1.1" ) root . Append ( childA ) childA . Append ( textree . NewNode ( "1.1.1" )) childA . Append ( textree . NewNode ( "1.1.2" )) childB := textree . NewNode ( "1.2" ) root . Append ( childB ) child
【文件预览】:
textree-master
----.travis.yml(158B)
----dir.go(1KB)
----render.go(4KB)
----render_test.go(1KB)
----snapshots()
--------basic.snap(491B)
--------dotted.snap(375B)
--------rounded.snap(491B)
----LICENSE(1KB)
----examples()
--------main.go(2KB)
----.gitignore(15B)
----Makefile(3KB)
----textree.go(2KB)
----README.md(4KB)
----.gometalinter.json(145B)