Add a helper using KDL Query Language (#10) to modify nodes in a document: ```hs -- foo { inner { bar { baz } } } -- => -- foo { inner { bar { baz2 } } } doc.modifyNodesMatching ("foo" KDL.>> "bar" KDL.> "baz") $ \node -> node{name = "baz2"} ```
Add a helper using KDL Query Language (#10) to modify nodes in a document: