xfbml支持重氮

时间:2011-10-02 09:14:00

标签: facebook plone xfbml diazo

我正在尝试在我的重氮主题网站上使用collective.simplesocial(Plone 4.1), 并注意到像按钮坏了。

<fb:like>标记已转换为<like>(前缀已被删除)。所有其他xfbml标签都遇到了同样的问题。

我已尝试将xmlns:fb="http://www.facebook.com/2008/fbml"添加到html标记,但它也无效。

有任何想法可以克服这个问题吗?

1 个答案:

答案 0 :(得分:3)

这应该适用于plusone按钮(请参阅回答原始问题的评论):

<xsl:template match="plusone">
  <xsl:element name="g:{local-name()}" xmlns:g="http://base.google.com/ns/1.0">
    <xsl:apply-templates select="@*|node()"/>
  </xsl:element>
</xsl:template>