<?xml version="1.0" encoding="UTF-8"?>
<!--A simple stylesheet used to sort the stanzas of the extracted versions of the Rubiayat. See RubiayatScraper.py for more information.-->
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="2.0">
    <xsl:template match="/">
        <xsl:perform-sort select="/root/lg">
            <xsl:sort select="head/text()" order="ascending"/>
        </xsl:perform-sort>
    </xsl:template>
</xsl:stylesheet>

