Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    text
    copied!<p>This stylesheet:</p> <pre><code>&lt;xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:h="header" exclude-result-prefixes="h"&gt; &lt;h:header for="Karaoke MP3+G"&gt; &lt;h1&gt;Karaoke Song&lt;/h1&gt; &lt;h2&gt;MP3+G&lt;/h2&gt; &lt;h4&gt;The track&lt;/h4&gt; &lt;h5&gt;Each karaoke track download from Mastermix Digital contains audio and graphics prompts. The song is provided in MP3+G format.&lt;/h5&gt; &lt;/h:header&gt; &lt;h:header for="Track"&gt; &lt;h1&gt;Original Version&lt;/h1&gt; &lt;h2&gt;Available in 320kbps MP3 and WAV&lt;/h2&gt; &lt;h4&gt;The track&lt;/h4&gt; &lt;h5&gt;Each track download from Mastermix Digital is the original artist version and a guaranteed dancefloor filler! The audio is provided in high quality 320kbps mp3 format.&lt;/h5&gt; &lt;/h:header&gt; &lt;h:header for="Extended Floorfillers"&gt; &lt;h1&gt;Extended Version&lt;/h1&gt; &lt;h2&gt;Available in 320kbps MP3 and WAV&lt;/h2&gt; &lt;h3 class="phead3"/&gt; &lt;h4&gt;Each extended floorfiller download from Mastermix Digital contains the original artist version mixed to be just that little bit longer!&lt;/h4&gt; &lt;h5&gt;The audio is provided in high quality 320kbps mp3 format.&lt;/h5&gt; &lt;/h:header&gt; &lt;xsl:template match="Track"&gt; &lt;xsl:variable name="vText" select="document('')/*/h:*[@for=current()/Tags/ProductType]"/&gt; &lt;xsl:choose&gt; &lt;xsl:when test="$vText"&gt; &lt;div class="product-subhead"&gt; &lt;h3&gt; &lt;xsl:value-of select="$vText/h1"/&gt; &lt;/h3&gt; &lt;h3 class="middle"&gt; &lt;xsl:value-of select="$vText/h2"/&gt; &lt;/h3&gt; &lt;h3&gt; &lt;xsl:copy-of select="$vText/h3/@*"/&gt; &lt;xsl:text&gt;100% Legal Download&lt;/xsl:text&gt; &lt;/h3&gt; &lt;/div&gt; &lt;xsl:value-of select="$vText/h4"/&gt; &lt;xsl:value-of select="Title"/&gt; is 100% legally covered by MCPS and PPL ensuring the artist &lt;xsl:value-of select="Attribution"/&gt; is paid royalties for every sale! &lt;xsl:value-of select="$vText/h5"/&gt; Purchase is available through Paypal with all major credit cards. &lt;/xsl:when&gt; &lt;xsl:otherwise&gt; &lt;xsl:value-of select="Tags/ProductType"/&gt; &lt;/xsl:otherwise&gt; &lt;/xsl:choose&gt; &lt;/xsl:template&gt; &lt;/xsl:stylesheet&gt; </code></pre> <p>Output:</p> <pre><code>&lt;div class="product-subhead"&gt; &lt;h3&gt;Original Version&lt;/h3&gt; &lt;h3 class="middle"&gt;Available in 320kbps MP3 and WAV&lt;/h3&gt; &lt;h3&gt;100% Legal Download&lt;/h3&gt; &lt;/div&gt; The trackComplete Number Ones Collection is 100% legally covered by MCPS and PPL ensuring the artist Various Artists is paid royalties for every sale! Each track download from Mastermix Digital is the original artist version and a guaranteed dancefloor filler! The audio is provided in high quality 320kbps mp3 format. Purchase is available through Paypal with all major credit cards. </code></pre>
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload