SimonCropper wrote:
I am looking for means of manipulating authors
I am guessing that means the Text context of a TextNode which is of course a child of an ElementNode. It might be possible to accomplish this using Javascript and an XSLT Processor that supports user functions. I think I remember using one of the Microsoft Processors that supports that, perhaps they all do, I don't know because I would not use that mechanism unless I had no other choice. Fortunately, in this case you have another choice. Using a compiled programming language (C#, C++, whatever), load the file in a DOM, query for the elements of interest, read the current Text, modify the Text (your capitalization), write it back into the element. Finally the last step would be to persist the changed XML back into it's storage location, e.g. Disk File or Database or whatever.