Visitors can check out the Forum FAQ by clicking this link. You have to register before you can post: click the REGISTER link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below. View our Forum Privacy Policy.
Want to receive the latest contracting news and advice straight to your inbox? Sign up to the ContractorUK newsletter here. Every sign up will also be entered into a draw to WIN £100 Amazon vouchers!
Depends on what you want to do with XML.
XML spec (http://www.w3.org/TR/REC-xml/) is rather simple:
there's only one document/root (top) node, and below that you have elements, attributes - the most basic ingredients, beyond that there are comments, namespaces and processing-instructions. That's all there is to know about XML.
What you probably might want to learns is more about schemas and validation and XSL, Xquery and other way to transform XML, and other way to work with it such as SAX.
But for starters a tip from my personal XML guru:
Don't look at XML as angle brackets, look at it as a tree.
A good editor will help visualise this, I recommend Oxygen, which you can trial for free and is really cheap anyway.
Thanks for the suggestions. I hope that I'll only get half way through the list before bounding back into the exciting world that is Technical Documentation.
Comment