Hi cramd,
I have the state 'reading to learn about xml'. Nevertheless I've read an article, where there is reported, that Microsoft implemented xml pretty early for ie. Unfortunatelly the w3c team changed some of the definitions before releasing V1.0. Microsoft did not yet update to this...
Having the xml code:
<?xml version="1.0" standalone="no" ?>
<?xml-stylesheet href="bold.xsl" type="text/xsl" ?>
<container>
this is <mybold>bold</mybold>
</container>
I tried this approach:
<xsl:stylesheet version="1.0"...
I'm new to the subject myself. What I know from examples is, that scripting codes are fully supported. You do it by tag 'xsl:text' . Here is some example from SelfHTML:
<?xml version="1.0" encoding="iso-8859-1"?>
<xsl:stylesheet version="1.0"...
since I'm not to familiar with xsl yet, I would like to do some kind of debugging. I want to understand it in a better way, which template rule created which kind of output. The hard coded way is something like this:
<xsl:template match="mybold">
{mybold}<b>
<xsl:apply-templates/>...
its no problem to do a simple sort of ONE node (author).
Just use <xsl:sort select="(node)" ...>
I want to handle the situation, that there might be several entries (author) with the same node value. How can I tell a second sort condition to order those equal ones? criteria could be...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.