Skip to content

Instantly share code, notes, and snippets.

@uncoded-ro
Created June 13, 2022 12:44
Show Gist options
  • Save uncoded-ro/16dd816d811958ae9134b8ff42e037af to your computer and use it in GitHub Desktop.
Save uncoded-ro/16dd816d811958ae9134b8ff42e037af to your computer and use it in GitHub Desktop.
<?xml version="1.0"?>
<!-- inventar.xml -->
<!DOCTYPE inventar [
<!ELEMENT inventar (carte | cd)*>
<!ENTITY % declaratii_carte SYSTEM "carte.dtd">
<!ENTITY % declaratii_cd SYSTEM "cd.dtd">
%declaratii_carte;
%declaratii_cd;
]>
<inventar>
<carte>
<titlu_carte>Morometii</titlu_carte>
<autor>Liviu Rebreanu</autor>
<pagini>240</pagini>
</carte>
<cd>
<titlu_cd>Concertele brandenburgice</titlu_cd>
<compozitor>Johann Sebastian Bach</compozitor>
<durata>72 min</durata>
</cd>
</inventar>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment