Skip to content

Instantly share code, notes, and snippets.

@uncoded-ro
Last active June 13, 2022 12:51
Show Gist options
  • Save uncoded-ro/ad7ee4812e6369dda899dc8de4c9d948 to your computer and use it in GitHub Desktop.
Save uncoded-ro/ad7ee4812e6369dda899dc8de4c9d948 to your computer and use it in GitHub Desktop.
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE curs [
<!ELEMENT curs (disciplina, facultate, tutor)>
<!ELEMENT disciplina (#PCDATA)>
<!ELEMENT facultate (#PCDATA)>
<!ENTITY facultate SYSTEM "facultate.xml">
<!ELEMENT tutor (nume, imagine)>
<!ELEMENT nume (#PCDATA)>
<!ELEMENT imagine EMPTY>
<!ATTLIST imagine sursa ENTITY #REQUIRED>
<!ENTITY img SYSTEM "https://virtualcampus.ro/img/author/MarianBucos.jpg" NDATA jpg>
<!NOTATION jpg SYSTEM "image/jpeg">
]>
<curs>
<disciplina>Modele de date avansate</disciplina>
&facultate;
<tutor>
<nume>Virgil Popescu</nume>
<imagine sursa="img" />
</tutor>
</curs>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment