[
Lists Home |
Date Index |
Thread Index
]
Hi everybody.
I´ve defined a DTD for e-books (quite small) ant this is one of the
elementents defined in it:
<!ELEMENT paragraph( #PCDATA | bold | italic | underlined | strike | table |
definition | numericList | alphabetList | unorderedList | image | code |
br )* >
<!ATTLIST parrafo
address ID #REQUIRED
align ( left | right | cen ) "left"
>
When i write the next line in the XML document, a validation error appears:
<paragraph address="1" align="cen">Dear Friends:
</paragraph>
I thougth #PCDATA was enougth for using character strings in a paragraph,
but Cooktop says it´s a name error (a name was started with an invalid
character.
Could anybody help me?
|