如何将HTML转换为BBCode

mev*_*ven 7 html php bbcode

我维护一个公告板,以HTML格式保存富文本消息.现在我需要将所有这些消息迁移到需要BBCode表示HTML的Joomla Kunena公告板中.

是否有任何库可以干净地将HTML转换为BBCode.有很多脚本用于BBCode到HTML但不是相反的方式.

谢谢...

Kor*_*nel 7

它应该在文本输出模式下使用XSLT :

<xsl:output method="text">
…
<xsl:template match="b|strong">[b]<xsl:apply-templates/>[/b]</xsl:template>
<xsl:template match="br">&#10;</xsl:template>
<xsl:template match="p">&#10;<xsl:apply-templates/>&#10;</xsl:template>
<xsl:template match="a">[url="<xls:value-of select="@href"/>"]<xsl:apply-templates/>[/url]</xsl:template>
<xsl:template match="text()"><x:value-of select="normalize-space(.)"/></xsl:template>
Run Code Online (Sandbox Code Playgroud)

为此,解析HTML并使用内置的XSLT处理器.