diff --git a/doc/examples/leo_bridge_demo.leo b/doc/examples/leo_bridge_demo.leo index 96f23c3..a928c58 100644 --- a/doc/examples/leo_bridge_demo.leo +++ b/doc/examples/leo_bridge_demo.leo @@ -10,7 +10,7 @@ Documentation -@nosent ileointro.txt +@nosent ILeo_doc.txt Documentation Introduction Installation @@ -319,13 +319,14 @@ onwards), and access the contents as string list (IPython SList) through If you do 'wb.foo.v = 12' when node named 'foo' does not exist, the node titled 'foo' will be automatically created and assigned body 12. -LeoNode also supports go() that focuses the node in the Leo window, ipush that -simulates pressing alt+I on the node. +LeoNode also supports go() that focuses the node in the Leo window, and ipush() +that simulates pressing alt+I on the node. You can access unknownAttributes by .uA property dictionary. Unknown attributes -allow you to store arbitrary (pickleable) python objects in the Leo nodes; -the attributes are stored when you save the .leo document, and recreated when -you open the document again. Example:: +allow you to store arbitrary (pickleable) python objects in the Leo nodes; the +attributes are stored when you save the .leo document, and recreated when you +open the document again. The attributes are not visible anywhere, but can be +used for domain-specific metatada. Example: [C:leo/src]|12> wb.spam.uA['coords'] = (12,222) [C:leo/src]|13> wb.spam.uA