Skip to content

Instantly share code, notes, and snippets.

@pjmagee
Created December 3, 2012 09:10
Show Gist options
  • Select an option

  • Save pjmagee/4193777 to your computer and use it in GitHub Desktop.

Select an option

Save pjmagee/4193777 to your computer and use it in GitHub Desktop.
<!ELEMENT people (lecturers, students)>
<!ELEMENT lecturers (lecturer+)>
<!ELEMENT students (student+)>
<!ELEMENT student (name, study, hobby)>
<!ELEMENT study (course+)>
<!ELEMENT hobby (#PCDATA)>
<!ELEMENT lecturer (name, teaching, research)>
<!ELEMENT teaching (course+)>
<!ELEMENT course (#PCDATA)>
<!ELEMENT research (#PCDATA)>
<!ELEMENT name (#PCDATA)>
<!ATTLIST name
title CDATA "1"
first CDATA #REQUIRED
last CDATA #REQUIRED
>
<!ATTLIST course
code CDATA #REQUIRED
>
<!ATTLIST lecturers xmlns:staff CDATA #FIXED "http://ku/staff/ns">
<!ATTLIST students xmlns:stud CDATA #FIXED "http://ku/students/ns">
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment