aboutsummaryrefslogtreecommitdiff
path: root/files/ko/web/xslt/output/index.html
blob: 97baf3f4338490ab11b16848b84cb1e24789298c (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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
---
title: output
slug: Web/XSLT/output
tags:
  - XSLT_Reference
translation_of: Web/XSLT/Element/output
---
<p>{{ XsltRef() }}</p>
<p><code>&lt;xsl:output&gt;</code> 요소는 출력 문서의 특성을 조절합니다. method 속성이 있는 이 요소가 Netscape에서 정확하게 기능하도록 쓸 수 있어야 합니다. 7.0 현재, <code>method="text"</code>는 기대한 대로 동작합니다.</p>
<h3 id=".EB.AC.B8.EB.B2.95" name=".EB.AC.B8.EB.B2.95">문법</h3>
<pre>&lt;xsl:output
	method="xml" | "html" | "text"
	version=STRING
	encoding=STRING
	omit-xml-declaration="yes" | "no"
	standalone="yes" | "no"
	doctype-public=STRING
	doctype-system=STRING
	cdata-section-elements=LIST-OF-NAMES
	indent="yes" | "no"
	media-type=STRING  /&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>method</code></dt>
 <dd>
  출력 형식을 지정합니다.</dd>
</dl>
<dl>
 <dt>
  <code>version</code></dt>
 <dd>
  출력 문서에 XML이나 HTML 선언의 version 속성값을 지정합니다. 이 속성은 <code>method="html"</code><code>method="xml"</code>일 때만 씁니다.</dd>
</dl>
<dl>
 <dt>
  <code>encoding</code></dt>
 <dd>
  출력 문서에 <code>encoding</code> 속성값을 지정합니다.</dd>
</dl>
<dl>
 <dt>
  <code>omit-xml-declaration</code></dt>
 <dd>
  출력에 XML 선언을 포함할 지를 나타냅니다. 가능한 값은 "<code>yes</code>"나 "<code>no</code>"입니다.</dd>
</dl>
<dl>
 <dt>
  <code>standalone</code> (지원 안 함.)</dt>
 <dd>
  있으면, standalone 선언이 출력 문서에 나타나면 좋을 지를 나타내고 그 값을 줍니다. 가능한 값은 "yes"나 "no"입니다.</dd>
</dl>
<dl>
 <dt>
  <code>doctype-public</code></dt>
 <dd>
  출력 문서에 <code>DOCTYPE</code> 선언의 <code>PUBLIC</code> 속성값을 지정합니다.</dd>
</dl>
<dl>
 <dt>
  <code>doctype-system</code></dt>
 <dd>
  출력 문서에 <code>DOCTYPE</code> 선언의 <code>SYSTEM</code> 속성값을 지정합니다.</dd>
</dl>
<dl>
 <dt>
  <code>cdata-section-elements</code></dt>
 <dd>
  <code>CDATA</code> 절에 써도 좋을 요소의 텍스트 컨텐트를 나열합니다. 요소는 공백으로 구분해야 합니다.</dd>
</dl>
<dl>
 <dt>
  <code>indent</code> (지원 안 함.)</dt>
 <dd>
  출력에 계층 구조를 나타내도록 하면 좋을 지를 지정합니다.</dd>
</dl>
<dl>
 <dt>
  <code>media-type</code> (지원 안 함.)</dt>
 <dd>
  출력 문서의 MIME 타입을 지정합니다.</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#output">XSLT section 16, Output</a></p>
<h3 id="Gecko_.EC.A7.80.EC.9B.90" name="Gecko_.EC.A7.80.EC.9B.90">Gecko 지원</h3>
<p>부분 지원. 위 해설을 보세요.</p>