What does the em mean in
<em:description>...</em:description>
This is an extract from a firefox addon install.rdf file. I am curious as to what the em part adds to this. I could not find a solution to this on Google either.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
emis the XML namespace that contains thedescriptionelement. At the top of the install.rdf file you should see an attribute like this:This tells an XML parser that the prefix
emis bound to that URI. It’s what gives that particulardescriptionelement meaning, and it’s how XML documents are able to have multipledescriptionelements that don’t conflict (by tying each type ofdescriptionto a different URI).