Skip to content

Instantly share code, notes, and snippets.

@s9w
Created September 4, 2025 14:08
Show Gist options
  • Select an option

  • Save s9w/344d261086179db97c24fea3d36ba478 to your computer and use it in GitHub Desktop.

Select an option

Save s9w/344d261086179db97c24fea3d36ba478 to your computer and use it in GitHub Desktop.
test data for imgui wrapping
<?xml version="1.0" encoding="UTF-8"?>
<library>
<book id="1">
<title>The Great Gatsby</title>
<author>
<firstName>F. Scott</firstName>
<lastName>Fitzgerald</lastName>
</author>
<genre>Fiction</genre>
<publishedYear>1925</publishedYear>
<price currency="USD">10.99</price>
<availability>
<status>Available</status>
<location>Shelf A3</location>
</availability>
</book>
<book id="2">
<title>1984</title>
<author>
<firstName>George</firstName>
<lastName>Orwell</lastName>
</author>
<genre>Dystopian</genre>
<publishedYear>1949</publishedYear>
<price currency="USD">8.99</price>
<availability>
<status>Checked Out</status>
<location>Shelf B1</location>
</availability>
</book>
<book id="3">
<title>To Kill a Mockingbird</title>
<author>
<firstName>Harper</firstName>
<lastName>Lee</lastName>
</author>
<genre>Fiction</genre>
<publishedYear>1960</publishedYear>
<price currency="USD">7.99</price>
<availability>
<status>Available</status>
<location>Shelf C2</location>
</availability>
</book>
<members>
<member id="M1">
<name>
<firstName>John</firstName>
<lastName>Doe</lastName>
</name>
<membershipType>Regular</membershipType>
<joinDate>2020-01-15</joinDate>
<borrowedBooks>
<bookId>2</bookId>
</borrowedBooks>
</member>
<member id="M2">
<name>
<firstName>Jane</firstName>
<lastName>Smith</lastName>
</name>
<membershipType>Premium</membershipType>
<joinDate>2019-05-22</joinDate>
<borrowedBooks>
<bookId>1</bookId>
<bookId>3</bookId>
</borrowedBooks>
</member>
</members>
</library>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment