I am currently working on an external DTD file and am trying to create a DTD element that can only contain text, no numbers.
Currently I have my element as:
<!Element name(#PCDATA)>
But I think this means that it can accept all text (numbers, etc.) which is not what I am wanting.
Help? Thank you.