Skip to content

Instantly share code, notes, and snippets.

@jessgusclark
Last active January 26, 2017 16:50
Show Gist options
  • Save jessgusclark/3ab56b1d35d14f1c431264593c4c0377 to your computer and use it in GitHub Desktop.
Save jessgusclark/3ab56b1d35d14f1c431264593c4c0377 to your computer and use it in GitHub Desktop.
<!-- ========== START Snippet ========== -->
<xsl:template match="table[@class='ou-alex-example']">
<div class="panel break-below">
<xsl:choose>
<xsl:when test="$ou:action = 'pub'">
<xsl:apply-templates select="tbody/tr/td/node()"/>
</xsl:when>
<xsl:otherwise>
<p><strong>This content will be removed on publish</strong></p>
<xsl:apply-templates select="tbody/tr/td/node()"/>
</xsl:otherwise>
</xsl:choose>
</div>
</xsl:template>
<!-- ========== END Snippet ========== -->
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment