Comment out and uncomment an xml element
I have an xml file and I want to uncomment and comment out an element in the file. <my_element> <blablabla href="docs/MyBlank.htm" /> </my_element> This one I would like to "close" (comment out) like this: <!-- <my_element> <blablabla href="docs/MyBlank.htm" /> </my_element> --> Furter down in the file I have an element with the same name which is "closed" (commented out) like this: <!-- <my_element> <blablabla href="secretwebhacking/MySecrectBankLogin.htm" /> </my_element> --> and I want to "open" it up (uncomment) like: <my_element> <blablabla href="secretwebhacking/MySecrectBankLogin.htm" /