Я строю дерево с помощью ipytree, поэтому:
from ipytree import Tree, Node
tree = Tree()
tree.add_node(Node('his is one of the 100+ free recipes of the IPython Cookbook, Second Edition, by Cyrille Rossant, a guide to numerical computing and data science in the Jupyter Notebook. The ebook and printed book are available for purchase at Packt Publishing.'))
node2 = Node('node2')
tree.add_node(node2)
tree
![enter image description here](https://i.stack.imgur.com/eLG7B.jpg)
Я хотел бы сделать узлы текстовыми многострочными.
некоторые идеи?