This module was written to make it simple to add custom operators for @@ -419,6 +419,32 @@
Wrap loose text in an element for further processing
++<wraptext expr="//some/node" position="text" element="span" /> +<wraptext expr="//some/node/other_node" position="tail" element="div" /> ++
which transforms
++<some> + <node> + plain text 1 + <other_node /> + plain text2 + </node> +</some> ++
to
++<some> + <node> + <span>plain text 1</span> + <other_node /> + <div>plain text2</div> + </node> +</some> ++
making those texts accessible for further operations
OCA, or the Odoo Community Association, is a nonprofit organization whose mission is to support the collaborative development of Odoo features and promote its widespread use.
+Current maintainer:
+This module is part of the OCA/server-tools project on GitHub.
You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.