Skip to content

Instantly share code, notes, and snippets.

@wlpotter
Created March 8, 2024 15:45
Show Gist options
  • Save wlpotter/23545d35f4bc9f5c6eaa1488a50b2be1 to your computer and use it in GitHub Desktop.
Save wlpotter/23545d35f4bc9f5c6eaa1488a50b2be1 to your computer and use it in GitHub Desktop.
Simple XML example for TEI XML training
<?xml version="1.0" encoding="UTF-8"?>
<bookList>
<book id="1">
<title>Fourth Wing</title>
<author>Rebecca Yarros</author>
<date>2023</date>
<publisher>Red Tower Books</publisher>
<isbn>9781649374042</isbn>
</book>
<book id="2">
<title>Tehanu</title>
<author>Ursula K. Le Guin</author>
<date>1990</date>
<publisher>Atheneum</publisher>
<isbn>0-689-31595-3</isbn>
</book>
<book id="3">
<title>Red Mars</title>
<author>Kim Stanley Robinson</author>
<date>1992</date>
<publisher>Spectra</publisher>
<isbn>0-553-09204-9</isbn>
</book>
</bookList>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment