Guest User

Untitled

a guest
Jun 21st, 2018
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.66 KB | None | 0 0
  1. <xsl:apply-templates select="content" mode="replace-bbcodes" />
  2.  
  3.  
  4. <xsl:template match="text()" mode="replace-bbcodes">
  5. <xsl:value-of select="." />
  6. </xsl:template>
  7.  
  8. <xsl:template match="br" mode="replace-bbcodes">
  9. <br />
  10. </xsl:template>
  11.  
  12. <xsl:template match="bbcode" mode="replace-bbcodes">
  13. <xsl:choose>
  14. <xsl:when test="@type='bold'">
  15. <strong><xsl:value-of select="text()" /></strong>
  16. </xsl:when>
  17. <xsl:when test="@type='url'">
  18. <xsl:variable name="link" select="@link" />
  19. <a href="{$link}"><xsl:value-of select="text()" /></a>
  20. </xsl:when>
  21. <xsl:otherwise><xsl:value-of select="text()" /></xsl:otherwise>
  22. </xsl:choose>
  23. </xsl:template>
Add Comment
Please, Sign In to add comment