XML Entities
<!DOCTYPE note [ <!ENTITY ext SYSTEM "http://example.com/external.dtd"> ]> <note> <info>&ext;</info> </note>
<!DOCTYPE note [ <!ENTITY inf "This is a test."> ]> <note> <info>&inf;</info> </note>
<!DOCTYPE note [ <!ENTITY % common "CDATA"> <!ELEMENT name (%common;)> ]> <note> <name>John Doe</name> </note>
<!DOCTYPE note [ <!ENTITY author "John Doe"> ]> <note> <writer>&author;</writer> </note>
<note> <text>Use < to represent a less-than symbol.</text> </note>
Last updated