diff options
Diffstat (limited to 'testdata/osxmlparser/simple_book.osxml')
-rw-r--r-- | testdata/osxmlparser/simple_book.osxml | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/testdata/osxmlparser/simple_book.osxml b/testdata/osxmlparser/simple_book.osxml new file mode 100644 index 0000000..310a413 --- /dev/null +++ b/testdata/osxmlparser/simple_book.osxml @@ -0,0 +1,18 @@ +<?xml version="1.0"?> +<document> + <import rel="domain" src="book_domain.osxml"/> + <book> + This might be some introductory text or a dedication. + <!-- Note that a better version of the book domain might specify + headings here. --> + <chapter name="myFirstChapter"> + Here we might have an introduction to the chapter. + <section name="myFirstSection"> + Here we might find the actual section content. + </section> + <section name="mySndSection"> + Here we might find the actual section content. + </section> + </chapter> + </book> +</document> |