-
Notifications
You must be signed in to change notification settings - Fork 60
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
From github/tank-bohr * Introduces custom exceptions New API is - SweetXml.stream_tags!/2,3 - SweetXml.stream!/2 * Fixes CR comments
- Loading branch information
Showing
4 changed files
with
210 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
<?xml version="1.05" encoding="UTF-8"?> | ||
<game> | ||
<matchups> | ||
<matchup winner-id="1"> | ||
<name>Match One</name> | ||
<teams> | ||
<team> | ||
<id>1</id> | ||
<name>Team One</name> | ||
</team> | ||
<team> | ||
<id>2</id> | ||
<name>Team Two</name> | ||
</team> | ||
</teams> | ||
</matchup> | ||
<matchup winner-id="2"> | ||
<name>Match Two</name> | ||
<teams> | ||
<team> | ||
<id>2</id> | ||
<name>Team Two</name> | ||
</team> | ||
<team> | ||
<id>3</id> | ||
<name>Team Three</name> | ||
</team> | ||
</teams> | ||
</matchup> | ||
<matchup winner-id="1"> | ||
<name>Match Three</name> | ||
<teams> | ||
<team> | ||
<id>1</id> | ||
<name>Team One</name> | ||
</team> | ||
<team> | ||
<id>3</id> | ||
<name>Team & Three</name> | ||
</team> | ||
</teams> | ||
</matchup> | ||
</matchups> | ||
</game> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters