diff options
Diffstat (limited to 'files/ko/web/xslt/template/index.html')
-rw-r--r-- | files/ko/web/xslt/template/index.html | 51 |
1 files changed, 51 insertions, 0 deletions
diff --git a/files/ko/web/xslt/template/index.html b/files/ko/web/xslt/template/index.html new file mode 100644 index 0000000000..1ce4a66d2b --- /dev/null +++ b/files/ko/web/xslt/template/index.html @@ -0,0 +1,51 @@ +--- +title: template +slug: Web/XSLT/template +tags: + - XSLT_Reference +translation_of: Web/XSLT/Element/template +--- +<p>{{ XsltRef() }}</p> +<p><code><xsl:template></code> 요소는 출력 생성 템플릿을 정의합니다. 이 요소는 match 속성이나 name 속성 집합이 있어야 합니다.</p> +<h3 id=".EB.AC.B8.EB.B2.95" name=".EB.AC.B8.EB.B2.95">문법</h3> +<pre><xsl:template + match=PATTERN + name=NAME + mode=NAME + priority=NUMBER> + <xsl:param> [optional] + TEMPLATE +</xsl:template></pre> +<h3 id=".ED.95.84.EC.88.98_.EC.86.8D.EC.84.B1" name=".ED.95.84.EC.88.98_.EC.86.8D.EC.84.B1">필수 속성</h3> +<p>없음.</p> +<h3 id=".EC.84.A0.ED.83.9D_.EC.86.8D.EC.84.B1" name=".EC.84.A0.ED.83.9D_.EC.86.8D.EC.84.B1">선택 속성</h3> +<dl> + <dt> + <code>match</code></dt> + <dd> + 이 템플릿을 쓰면 좋을 요소를 결정하는 패턴을 지정합니다. <code>name</code> 속성이 없다면, 필수 속성입니다.</dd> +</dl> +<dl> + <dt> + <code>name</code></dt> + <dd> + <code><xsl:call-template></code> 요소가 호출할 수 있는 이 템플릿에 이름을 지정합니다.</dd> +</dl> +<dl> + <dt> + <code>mode</code></dt> + <dd> + 이 템플릿에 <code><xsl:apply-templates></code> 요소의 속성과 일치할 수 있는 특유한 모드를 지정합니다. 이는 같은 정보를 다양한 방식으로 처리하는데 유용합니다.</dd> +</dl> +<dl> + <dt> + <code>priority</code></dt> + <dd> + 이 템플릿에 숫자로 된 우선권을 지정합니다. 이는 <code>Infinity</code>와 다른 아무 숫자일 수 있습니다. 처리기는 하나 이상의 템플릿이 같은 노드와 일치할 때 이 숫자를 씁니다.</dd> +</dl> +<h3 id=".ED.83.80.EC.9E.85" name=".ED.83.80.EC.9E.85">타입</h3> +<p>최상위, <code><xsl:stylesheet></code>나 <code><xsl:transform></code>의 자식이어야 함.</p> +<h3 id=".EC.A0.95.EC.9D.98" name=".EC.A0.95.EC.9D.98">정의</h3> +<p><a class="external" href="http://www.w3.org/TR/xslt#section-Defining-Template-Rules">XSLT section 5.3, Defining Template Rules</a></p> +<h3 id="Gecko_.EC.A7.80.EC.9B.90" name="Gecko_.EC.A7.80.EC.9B.90">Gecko 지원</h3> +<p>지원함.</p> |