Guest User

Untitled

a guest
Jun 21st, 2018
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.95 KB | None | 0 0
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
  3. xmlns:xs="http://www.w3.org/2001/XMLSchema"
  4. exclude-result-prefixes="xs"
  5. version="2.0">
  6. <xsl:template match="//p" priority="0">
  7. <xsl:copy-of select="."/>
  8. <xsl:value-of select="'//p'"/>
  9. </xsl:template>
  10.  
  11. <xsl:template match="p">
  12. <xsl:copy-of select="."/>
  13. <xsl:value-of select="'p'"/>
  14. </xsl:template>
  15. </xsl:stylesheet>
  16.  
  17. <?xml version="1.0" encoding="UTF-8"?>
  18. <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
  19. xmlns:xs="http://www.w3.org/2001/XMLSchema"
  20. exclude-result-prefixes="xs"
  21. version="2.0">
  22. <xsl:template match="//p">
  23. <xsl:copy-of select="."/>
  24. <xsl:value-of select="'//p'"/>
  25. </xsl:template>
  26.  
  27. <xsl:template match="p" priority="0.5">
  28. <xsl:copy-of select="."/>
  29. <xsl:value-of select="'p'"/>
  30. </xsl:template>
  31. </xsl:stylesheet>
Add Comment
Please, Sign In to add comment