<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE news [
<!ELEMENT news (post)*>
<!ELEMENT post (author , editedby*, title , content , date)>
<!ELEMENT editedby (name , date)>
<!ELEMENT author (#PCDATA)>
<!ELEMENT title (#PCDATA)>
<!ELEMENT content (#PCDATA)>
<!ELEMENT date (#PCDATA)>
<!ELEMENT name (#PCDATA)>
]>
<news>
	<post>
		<title>test post</title>
		<date>Fri May 12 21:38:39 CEST 2006</date>
		<author>IroNiQ</author>
		<content>
			This is a test post.<br />
			It can have more than one line.<br />
		</content>
	</post>
	<post>
		<title>second test post</title>
		<date>Fri May 12 21:38:39 CEST 2006</date>
		<author>IroNiQ</author>
		<editedby>
			<name>VMiklos</name>
			<date>Fri May 12 22:11:03 CEST 2006</date>
		</editedby>
		<editedby>
			<name>boobaa</name>
			<date>Fri May 12 22:11:18 CEST 2006</date>
		</editedby>
		<content>
			This is the second test post.<br />
			It can have more than one line, too.<br />
		</content>
	</post>
</news>

