0e8a77520c
* add multi-node manipulation, delete on xpath match only and count capability to win_xml * fix pep8 and yamllint errors identified by ci tests * fixed bugs when handling multiple elements, multiple attribute nodes and handling for attribute nodes when using xpaths that only select attributes like //@lang. Added more tests and tweaked documentation. * fixed line-too-long error * fixed trailing space errors * trailing whitespace expunged * bump version_added to 2.9 for new changes * fix PSAvoidUsingPositionalParameters sanity check failure * refix sanity check as it broke the msg return value
10 lines
424 B
XML
10 lines
424 B
XML
<?xml version='1.0' encoding='utf-8'?>
|
|
<books>
|
|
<works lang="en">
|
|
<title lang="en" isbn13="123412341234X">A Great Book</title>
|
|
<title lang="en" isbn13="1234109823400">Best Book Ever</title>
|
|
<title lang="en" isbn13="123412121234X">Worst Book Ever</title>
|
|
<title lang="en" isbn13="423412341234X">Another Book</title>
|
|
<title lang="en" isbn13="523412341234X">Worst Book Ever Two</title>
|
|
</works>
|
|
</books>
|