Advertisement
Guest User

Untitled

a guest
Nov 13th, 2017
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
MXML 0.81 KB | None | 0 0
  1. <?xml version="1.0"?>
  2. <xsl:stylesheet version = "1.0"
  3. xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
  4. xmlns:xlink="http://www.w3.org/1999/xlink">
  5. <xsl:template match = "/">
  6.  <html>
  7.   <head>
  8.     <title>Eksamenstesting</title></head>
  9.  <body>
  10.  <xsl:apply-templates select="root/trafikkmelding"/>
  11.  </body>
  12.  </html>
  13.  </xsl:template>
  14.  
  15.   <xsl:template match="root/trafikkmelding">
  16.     <xsl:apply-templates select="overskrift"/><br />
  17.     <xsl:apply-templates select="ingress" /><br />
  18.   </xsl:template>
  19.  
  20. <xsl:template match="overskrift">
  21.   Overskrift: <span style="color:#ff0000">
  22.   <xsl:value-of select="."/></span>
  23.   <br />
  24.   </xsl:template>
  25.  
  26. <xsl:template match="ingress">
  27.   Beskrivelse: <span style="color:#ff0000">
  28.   <xsl:value-of select="."/></span>
  29.   <br />
  30.   </xsl:template>
  31.  
  32. </xsl:stylesheet>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement