I have a dtd which validates data
<!ATTLIST Attr1
OS (Windows | XP ) "Windows"
country (USA | CAN) "USA"[color=blue]
>[/color]
I need to add a special charater "slash" in one of the default values,
say OS (Windows | XP | 2000/NT) "Windows"
How do I do this? I tried creating entity but I couldn't create entity
for unparsed data.
<!ATTLIST Attr1
OS (Windows | XP ) "Windows"
country (USA | CAN) "USA"[color=blue]
>[/color]
I need to add a special charater "slash" in one of the default values,
say OS (Windows | XP | 2000/NT) "Windows"
How do I do this? I tried creating entity but I couldn't create entity
for unparsed data.
Comment