aboutsummaryrefslogtreecommitdiff
path: root/files/ko/web/xslt/element/output/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'files/ko/web/xslt/element/output/index.html')
-rw-r--r--files/ko/web/xslt/element/output/index.html90
1 files changed, 90 insertions, 0 deletions
diff --git a/files/ko/web/xslt/element/output/index.html b/files/ko/web/xslt/element/output/index.html
new file mode 100644
index 0000000000..97baf3f433
--- /dev/null
+++ b/files/ko/web/xslt/element/output/index.html
@@ -0,0 +1,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>