Say I want to specify the company motto, "There's a sucker born every minute!" in my XML config file. As a Java string, it's easily represented as "\"There's a sucker born every minute!\""
But how do I do it in XML?
<!-- Company motto
-->
<MOTTO value="There's a sucker born every minute!"/>
is valid XML, but the string doesn't include the beginning & ending quotes, as desired.