aboutsummaryrefslogtreecommitdiff
path: root/files/ko/web/xslt/template/index.html
blob: 1ce4a66d2bf7c586317599c62c2d76755828ccc1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
---
title: template
slug: Web/XSLT/template
tags:
  - XSLT_Reference
translation_of: Web/XSLT/Element/template
---
<p>{{ XsltRef() }}</p>
<p><code>&lt;xsl:template&gt;</code> 요소는 출력 생성 템플릿을 정의합니다. 이 요소는 match 속성이나 name 속성 집합이 있어야 합니다.</p>
<h3 id=".EB.AC.B8.EB.B2.95" name=".EB.AC.B8.EB.B2.95">문법</h3>
<pre>&lt;xsl:template
	match=PATTERN
	name=NAME
	mode=NAME
	priority=NUMBER&gt;
	&lt;xsl:param&gt; [optional]
	TEMPLATE
&lt;/xsl:template&gt;</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>&lt;xsl:call-template&gt;</code> 요소가 호출할 수 있는 이 템플릿에 이름을 지정합니다.</dd>
</dl>
<dl>
 <dt>
  <code>mode</code></dt>
 <dd>
  이 템플릿에 <code>&lt;xsl:apply-templates&gt;</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>&lt;xsl:stylesheet&gt;</code><code>&lt;xsl:transform&gt;</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>