Skip to content

Instantly share code, notes, and snippets.

View felixlohmeier's full-sized avatar

Felix Lohmeier felixlohmeier

View GitHub Profile
<?xml version="1.0"?>
<xsl:stylesheet version="2.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xsl:output indent="yes" encoding="UTF-8"/>
<xsl:template match="/">
<ead>
@zuphilip
zuphilip / csv-to-ead-xml.xquery
Last active May 6, 2017 15:39
CSV to ead.XML with XQuery
for $record in db:open("transform")
let $collection := $record//record[level="collection"]
for $child in $record//record[parent=$collection/id]
for $gchild in $record//record[parent=$child/id]
return
<ead>
<eadheader >...</eadheader>