Upload 4 files
Browse files- complex-nested.xml +114 -0
- pure-tone.wav +3 -0
- sample-3.mp4 +3 -0
- sample-4.png +3 -0
complex-nested.xml
ADDED
|
@@ -0,0 +1,114 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
<?xml version="1.0" encoding="UTF-8"?>
|
| 2 |
+
<!-- This sample XML file is provided by Sample-Files.com. Visit us for more sample files and resources. -->
|
| 3 |
+
<library>
|
| 4 |
+
<book category="fiction" isbn="978-1234567890">
|
| 5 |
+
<title>The Great Novel</title>
|
| 6 |
+
<author>
|
| 7 |
+
<name>
|
| 8 |
+
<first>John</first>
|
| 9 |
+
<last>Doe</last>
|
| 10 |
+
</name>
|
| 11 |
+
<biography>
|
| 12 |
+
<paragraph>John Doe is a renowned author with a passion for storytelling.</paragraph>
|
| 13 |
+
<paragraph>He has written several bestsellers and continues to inspire readers worldwide.</paragraph>
|
| 14 |
+
</biography>
|
| 15 |
+
</author>
|
| 16 |
+
<publisher>
|
| 17 |
+
<name>Book Publishers Inc.</name>
|
| 18 |
+
<location>
|
| 19 |
+
<city>New York</city>
|
| 20 |
+
<country>USA</country>
|
| 21 |
+
</location>
|
| 22 |
+
</publisher>
|
| 23 |
+
<chapters>
|
| 24 |
+
<chapter>
|
| 25 |
+
<title>Chapter 1: The Beginning</title>
|
| 26 |
+
<content>
|
| 27 |
+
<paragraph>It was a dark and stormy night when our story began.</paragraph>
|
| 28 |
+
<paragraph>The wind howled through the trees, setting the stage for an unforgettable adventure.</paragraph>
|
| 29 |
+
</content>
|
| 30 |
+
</chapter>
|
| 31 |
+
<chapter>
|
| 32 |
+
<title>Chapter 2: The Journey</title>
|
| 33 |
+
<content>
|
| 34 |
+
<paragraph>Our heroes set out on a perilous journey across treacherous lands.</paragraph>
|
| 35 |
+
<paragraph>Little did they know the challenges that awaited them beyond the horizon.</paragraph>
|
| 36 |
+
</content>
|
| 37 |
+
</chapter>
|
| 38 |
+
</chapters>
|
| 39 |
+
</book>
|
| 40 |
+
|
| 41 |
+
<book category="non-fiction" isbn="978-0987654321">
|
| 42 |
+
<title>The Art of XML</title>
|
| 43 |
+
<author>
|
| 44 |
+
<name>
|
| 45 |
+
<first>Jane</first>
|
| 46 |
+
<last>Smith</last>
|
| 47 |
+
</name>
|
| 48 |
+
<biography>
|
| 49 |
+
<paragraph>Jane Smith is a leading expert in XML and data structures.</paragraph>
|
| 50 |
+
<paragraph>Her work has revolutionized how we think about organizing information.</paragraph>
|
| 51 |
+
</biography>
|
| 52 |
+
</author>
|
| 53 |
+
<publisher>
|
| 54 |
+
<name>Tech Books Co.</name>
|
| 55 |
+
<location>
|
| 56 |
+
<city>San Francisco</city>
|
| 57 |
+
<country>USA</country>
|
| 58 |
+
</location>
|
| 59 |
+
</publisher>
|
| 60 |
+
<chapters>
|
| 61 |
+
<chapter>
|
| 62 |
+
<title>Chapter 1: Introduction to XML</title>
|
| 63 |
+
<content>
|
| 64 |
+
<paragraph>XML has become an essential part of modern data management.</paragraph>
|
| 65 |
+
<paragraph>In this chapter, we explore the basics and history of XML.</paragraph>
|
| 66 |
+
</content>
|
| 67 |
+
</chapter>
|
| 68 |
+
<chapter>
|
| 69 |
+
<title>Chapter 2: Advanced XML Techniques</title>
|
| 70 |
+
<content>
|
| 71 |
+
<paragraph>Delve into the intricacies of XML schemas and transformations.</paragraph>
|
| 72 |
+
<paragraph>Learn how to leverage XML for complex data structures and integrations.</paragraph>
|
| 73 |
+
</content>
|
| 74 |
+
</chapter>
|
| 75 |
+
</chapters>
|
| 76 |
+
</book>
|
| 77 |
+
|
| 78 |
+
<book category="mystery" isbn="978-5678901234">
|
| 79 |
+
<title>The Enigma Code</title>
|
| 80 |
+
<author>
|
| 81 |
+
<name>
|
| 82 |
+
<first>Emily</first>
|
| 83 |
+
<last>Johnson</last>
|
| 84 |
+
</name>
|
| 85 |
+
<biography>
|
| 86 |
+
<paragraph>Emily Johnson is a master of suspense and intrigue in her writing.</paragraph>
|
| 87 |
+
<paragraph>Her mysteries have captivated readers around the globe.</paragraph>
|
| 88 |
+
</biography>
|
| 89 |
+
</author>
|
| 90 |
+
<publisher>
|
| 91 |
+
<name>Mystery House Publishing</name>
|
| 92 |
+
<location>
|
| 93 |
+
<city>London</city>
|
| 94 |
+
<country>UK</country>
|
| 95 |
+
</location>
|
| 96 |
+
</publisher>
|
| 97 |
+
<chapters>
|
| 98 |
+
<chapter>
|
| 99 |
+
<title>Chapter 1: The Mysterious Letter</title>
|
| 100 |
+
<content>
|
| 101 |
+
<paragraph>Detective Sarah Blake stared at the cryptic message on her desk.</paragraph>
|
| 102 |
+
<paragraph>Little did she know, this letter would lead her into a web of international espionage.</paragraph>
|
| 103 |
+
</content>
|
| 104 |
+
</chapter>
|
| 105 |
+
<chapter>
|
| 106 |
+
<title>Chapter 2: Decoding the Past</title>
|
| 107 |
+
<content>
|
| 108 |
+
<paragraph>As Sarah delved deeper into the case, she uncovered a decades-old conspiracy.</paragraph>
|
| 109 |
+
<paragraph>The truth, she realized, was hidden in plain sight all along.</paragraph>
|
| 110 |
+
</content>
|
| 111 |
+
</chapter>
|
| 112 |
+
</chapters>
|
| 113 |
+
</book>
|
| 114 |
+
</library>
|
pure-tone.wav
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:17c38d34f371c7dc78ed657fc11a33c482906eb6274088890e31aeed880ac32a
|
| 3 |
+
size 3528530
|
sample-3.mp4
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:686b173f61f60a5c336276759c944895eaa8bc4a054fe161e000c71356f82e10
|
| 3 |
+
size 15317528
|
sample-4.png
ADDED
|
Git LFS Details
|