<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform">

<xsl:template match="/library">
	<xsl:copy>
		<xsl:apply-templates select="book"/>
	</xsl:copy>
</xsl:template>

<xsl:template match="*[@href]">
	<xsl:copy-of select="id(@href)"/>
</xsl:template>

<xsl:template match="*|@*">
	<xsl:copy>
		<xsl:apply-templates/>
	</xsl:copy>
</xsl:template>

</xsl:stylesheet>