blob: b1d420b7f3eb1a7282c1397235da904f94977851 [file] [log] [blame]
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<!-- Test FileName: mk021.xsl -->
<!-- Source Attribution:
This test was written by Michael Kay and is taken from
'XSLT Programmer's Reference' published by Wrox Press Limited in 2000;
ISBN 1-861003-12-9; copyright Wrox Press Limited 2000; all rights reserved.
Now updated in the second edition (ISBN 1861005067), http://www.wrox.com.
No part of this book may be reproduced, stored in a retrieval system or
transmitted in any form or by any means - electronic, electrostatic, mechanical,
photocopying, recording or otherwise - without the prior written permission of
the publisher, except in the case of brief quotations embodied in critical articles or reviews.
-->
<!-- Example: poem.xml, numbered-style.xsl -->
<!-- Chapter/Page: 4-217 -->
<!-- Purpose: Precedence of template rules -->
<xsl:import href="mk020.xsl"/>
<xsl:template match="line">
<xsl:number level="any" format="001"/>&#xa0;&#xa0;
<xsl:apply-imports/>
</xsl:template>
</xsl:stylesheet>