Jump to content

XSL tag validator


paetje

Recommended Posts

I'm using the following code to make some words in my text boldcode in XML

<nadruk> Bold </nadruk>

code in XSL

<xsl:template match="nadruk">	<span class="bold">  <xsl:apply-templates/>	</span>	</xsl:template>

and with CSS

.bold {	font-weight:bold;	}

this works just fine :) but now I want one central document to valide all the pages, on the way you do with an CSS file. Does anyone know how to make this kind of document and call it on my XSL page?

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...