Created
February 24, 2012 20:38
-
-
Save crichey/1903593 to your computer and use it in GitHub Desktop.
Shakespeare
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
for $speech in doc()//SPEECH | |
let $speaker := $speech/SPEAKER | |
let $lines := $speech/LINE | |
return ( | |
<h2>{$speaker/text()}</h2>, | |
<p>{for $line in $lines return $line/text()}</p> | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment