TrickPalace
http://www.trickpalace.net/
tools/
xslt.htm
web tools
XSLT
XML :
XSL :
<?xml version="1.0" encoding="shift_jis"?> <?xml:stylesheet type="text/xsl" href="sample.xsl"?> <sample> <subject title="リンクについて"> <comment> <P> リンクをしてくださる場合、当方への連絡は不要です。<BR/> リンク先は<AA>http://mx1.tiki.ne.jp/~wraith/</AA>へお願いします。<BR/> 相互リンクをご希望される場合はお手数ですが<A href="mailto:wraith@mx1.tiki.ne.jp">メール</A>か<A href="http://cgi.mediamix.ne.jp/~t3799/user-cgi/bbs.cgi">掲示板</A>にて連絡をお願いしますです。<BR/> </P> </comment> </subject> </sample>
<?xml version="1.0" encoding="shift_jis"?> <xsl:stylesheet xmlns:xsl="http://www.w3.org/TR/WD-xsl" xml:lang="ja"> <xsl:template> <xsl:apply-templates select="/sample"/> </xsl:template> <xsl:template match="sample"> <DIV> <xsl:apply-templates/> </DIV> </xsl:template> <xsl:template match="subject"> <B><xsl:value-of select="@title"/></B> <P><xsl:apply-templates/></P> </xsl:template> <xsl:template match="comment"> <DIV style="font-size:10pt;font-family:'MS ゴシック'"> <xsl:apply-templates/> </DIV> </xsl:template> <xsl:template match="B|P|PRE|NOBR"><xsl:copy><xsl:apply-templates/></xsl:copy></xsl:template> <xsl:template match="WBR|BR|text()"><xsl:copy/></xsl:template> <xsl:template match="A"><A><xsl:attribute name="href"><xsl:value-of select="@href"/></xsl:attribute><xsl:apply-templates/></A></xsl:template> <xsl:template match="AA"><A><xsl:attribute name="href"><xsl:value-of/></xsl:attribute><xsl:apply-templates/></A></xsl:template> </xsl:stylesheet>
▼ XSLT ▼
Translation Result :