<link href="/assets/64d0ba83aa42c90354ff97799bcfc0c2.css" type="text/css" rel="stylesheet"> <script src="/assets/6fd6663d5303bb7eda3ef7493fc29db6.js"></script> <script> $(document).ready(function() { anchors.options = { visible: 'hover', placement: 'right', truncate: 64 }; anchors.add('#body h2, #body h3, #body h4, #body h5'); }); </script> <script> hljs.initHighlightingOnLoad(); </script>
<h3>Règles modèle internes (Built-in templates)</h3> <p>Les règles suivantes sont toujours appliquées si des règles plus spécifiques ou une redéfinition de ces règles ne sont pas présentes dans la feuille de style :</p> <pre><code class="language-xml"><xsl:stylesheet xmlns:xsl = "http://www.w3.org/1999/XSL/Transform" version = "1.0"> <xsl:template match = "*|/"> <xsl:apply-templates select="*|text()"/> </xsl:template> <xsl:template match = "text()|@*"> <xsl:value-of select = "."/> </xsl:template> <xsl:template match = "processing-instruction()|comment()"/> </xsl:stylesheet></code></pre>