xslt でレンダリングされたサイトに Facebook のログイン ボタンを表示しようとしています。
入れてます
<fb:loginbutton></fb:login-button>
xsltで、しかし私のページはちょうどレンダリングします
<login-button></login-button>
その理由と、それについて何ができるでしょうか。
login-button の代わりに loginbutton はタイプミスだと思いますか? 完全な例はありますか?
このxmlがある場合:
<test>hi</test>
そして、このxslt:
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:fb="http://www.facebook.com/2008/fbml" version="1.0">
<xsl:output method="html" indent="yes"/>
<xsl:template match="test">
<html>
<body>
<fb:login-button>
test
</fb:login-button>
</body>
</html>
</xsl:template>
</xsl:stylesheet>
次の結果が得られます。
<html xmlns:fb="http://www.facebook.com/2008/fbml">
<body>
<fb:login-button>
test
</fb:login-button>
</body>
</html>