PreTeXtBook / pretext

PreTeXt: an authoring and publishing system for scholarly documents
https://pretextbook.org
Other
266 stars 208 forks source link

DTD has duplicates #259

Closed rbeezer closed 8 years ago

rbeezer commented 8 years ago

Michael Doob reports some duplicate entries in the DTD, giving rise to error reports in XML Copy Editor such as

Error at line 291, column 47: element types cannot be duplicated in mixed content model

Necessary changes to stop the messages are

mdoob@math-01:~$ diff /home/mdoob/mathbook/schema/dtd/mathbook.dtd mathbook.dtd
291c291
< <!ELEMENT cell    (#PCDATA|%sentence;|answer)*>

---
> <!ELEMENT cell    (#PCDATA|%sentence;)*>
630c630
< <!ELEMENT date        (#PCDATA|%characters;|today|timeofday)*>

---
> <!ELEMENT date        (#PCDATA|%characters;)*>
rbeezer commented 8 years ago

Fixed at 8ca3c828. Thanks for the careful report.