name: tree-view version: 0.5.1 synopsis: Render trees as foldable HTML and Unicode art description: Render trees as foldable HTML and Unicode art . Example: . > *Data.Tree.View> drawTree $ Node "Add" [Node "Sub" [Node "3" [], Node "Mul" [Node "1" [], Node "2" []]], Node "4" []] > Add > ├╴Sub > │ ├╴3 > │ └╴Mul > │ ├╴1 > │ └╴2 > └╴4 license: BSD3 license-file: LICENSE author: Emil Axelsson maintainer: 78emil@gmail.com copyright: Copyright (c) 2014-2021 Emil Axelsson category: Data build-type: Simple cabal-version: >=1.10 source-repository head type: git location: git@github.com:emilaxelsson/tree-view.git library exposed-modules: Data.Tree.View hs-source-dirs: src build-depends: base < 5, containers, mtl default-language: Haskell2010