Created
June 21, 2016 19:03
-
-
Save davidamichelson/985fccd6bb82ec338d3c2a48d16abee0 to your computer and use it in GitHub Desktop.
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
xquery version "3.0"; | |
declare namespace tei = "http://www.tei-c.org/ns/1.0"; | |
for $doc in fn:collection("/db/apps/incomplete-saints")//tei:TEI | |
let $abstract := $doc//tei:note[@type='abstract'] | |
let $uri := $doc//tei:publicationStmt//tei:idno[@type="URI"] | |
let $name := $doc//tei:persName[@xml:lang="en"] | |
return | |
<tei:div> | |
{$uri} | |
{$name} | |
{$abstract} | |
</tei:div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment