Skip to content

Instantly share code, notes, and snippets.

@wsalesky
Created June 17, 2014 13:17
Show Gist options
  • Save wsalesky/245b615235d435586513 to your computer and use it in GitHub Desktop.
Save wsalesky/245b615235d435586513 to your computer and use it in GitHub Desktop.
Simple browse for #xqy14
let $collection := 'PATH TO YOUR DATA'
for $play in collection($collection)
let $title := $play//tei:titleStmt/tei:title/text()
let $uri := base-uri($play)
return
<li>
<span class="title">{$title}.</span>
<span>{$uri}</span>
</li>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment