diff options
Diffstat (limited to 'files/ko/web/xslt/stylesheet/index.html')
-rw-r--r-- | files/ko/web/xslt/stylesheet/index.html | 52 |
1 files changed, 52 insertions, 0 deletions
diff --git a/files/ko/web/xslt/stylesheet/index.html b/files/ko/web/xslt/stylesheet/index.html new file mode 100644 index 0000000000..0119cec645 --- /dev/null +++ b/files/ko/web/xslt/stylesheet/index.html @@ -0,0 +1,52 @@ +--- +title: stylesheet +slug: Web/XSLT/stylesheet +tags: + - XSLT_Reference +translation_of: Web/XSLT/Element/stylesheet +--- +<p>{{ XsltRef() }}</p> +<p><code><xsl:stylesheet></code>(나 동등한 <code><xsl:transform></code>) 요소는 스타일시트의 최외곽 요소입니다.</p> +<h3 id=".EC.9D.B4.EB.A6.84.EA.B3.B5.EA.B0.84_.EC.84.A0.EC.96.B8" name=".EC.9D.B4.EB.A6.84.EA.B3.B5.EA.B0.84_.EC.84.A0.EC.96.B8">이름공간 선언</h3> +<p>pseudo 속성은 XSLT 스타일시트로 문서를 식별하기 위해 필요합니다. 대체로 이는 <code>xmlns:xsl="<span class="nowiki">http://www.w3.org/1999/XSL/Transform</span>"</code>입니다.</p> +<h3 id=".EB.AC.B8.EB.B2.95" name=".EB.AC.B8.EB.B2.95">문법</h3> +<pre><xsl:stylesheet + version=NUMBER + xmlns:xsl="http://www.w3.org/1999/XSL/Transform" + id=NAME + extension-element-prefixes=LIST-OF-NAMES + exclude-result-prefixes=LIST-OF-NAMES> + ENTIRE STYLESHEET +</xsl:stylesheet></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> +<dl> + <dt> + <code>version</code></dt> + <dd> + 이 스타일시트에 필요한 XSLT의 버전을 지정합니다.</dd> +</dl> +<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>id </code>(7.0 현재 오직 inline DTD가 명시하여 호출하는 경우만 지원함.)</dt> + <dd> + 이 스타일시트에 <code>id</code>를 지정합니다. 이는 스타일시트를 다른 XML 문서에 포함할 때 가장 자주 씁니다.</dd> +</dl> +<dl> + <dt> + extension-element-prefixes (지원 안 함.)</dt> + <dd> + 이 문서의 확장 요소에 빈칸으로 구분한 이름공간 접두사를 지정합니다.</dd> +</dl> +<dl> + <dt> + exclude-result-prefixes</dt> + <dd> + 이 문서에 쓸 출력 문서에 보내지 않았으면 하는 이름공간을 지정합니다. 목록은 공백으로 구분합니다.</dd> +</dl> +<h3 id=".ED.83.80.EC.9E.85" name=".ED.83.80.EC.9E.85">타입</h3> +<p>필수 최외곽 스타일시트 요소.</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#stylesheet-element">XSLT section 2.2, Stylesheet Element</a></p> +<h3 id="Gecko_.EC.A7.80.EC.9B.90" name="Gecko_.EC.A7.80.EC.9B.90">Gecko 지원</h3> +<p>조금 지원. 위 해설을 보세요.</p> |