08/06/21 21:01:52
XSLTってあったな。
今時のサーバとブラウザの世代交代を考慮すると、本番運用できるかもな。
<xsl:output method="text" encoding="UTF-8"/>
<xsl:template match="res[child::title and child::url]"><xsl:value-of select="child::title"/> : <xsl:value-of select="child::url"/><xsl:text> </xsl:text></xsl:template>
<xsl:template match="node()"><xsl:apply-templates/></xsl:template>