aboutsummaryrefslogtreecommitdiff
path: root/files/ja/web/xslt/element/text/index.html
blob: 8d4978254d3e5850dad5cdb9916ea16835884a79 (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
---
title: '<xsl:text>'
slug: Web/XSLT/Element/text
tags:
  - Text
  - XSLT
  - リファレンス
  - 要素
translation_of: Web/XSLT/Element/text
---
<p>{{ XsltRef() }}</p>

<p><code>&lt;xsl:text&gt;</code> 要素はリテラルテキストを出力ツリーに書き込みます。 <code>#PCDATA</code>、リテラルテキスト、およびエンティティ参照を含むことがあります。</p>

<h3 id="Syntax" name="Syntax">構文</h3>

<pre>&lt;xsl:text disable-output-escaping="yes" | "no"&gt;
	TEXT
&lt;/xsl:text&gt; </pre>

<h3 id="Required_Attributes" name="Required_Attributes">必須属性</h3>

<p>なし</p>

<h3 id="Optional_Attributes" name="Optional_Attributes">任意属性</h3>

<dl>
 <dt><code>disable-output-escaping</code> (Netscape は変換の結果 - 下の「出力」 - を直列化しませんので、この属性は本質的に文脈上は無関係です。htmlエンティティを出力するには、代わりに数値を使用します (例: <code>&amp;nbsp</code><code>&amp;#160</code>) )</dt>
 <dd>出力に書き込まれたときに特殊文字をエスケープするかどうかを指定します。使用可能な値は "<code>yes</code>" または "<code>no</code>" です。たとえば "<code>yes</code>" が設定されている場合、文字&gt;<code>&gt;</code> ではなく"<code>&amp;gt</code>" として出力されます。</dd>
</dl>

<h3 id="Type" name="Type">タイプ</h3>

<p>命令は、テンプレート内に表示されます。</p>

<h3 id="Defined" name="Defined">定義</h3>

<p>XSLT, section 7.2</p>

<h3 id="Gecko_support" name="Gecko_support">Gecko のサポート</h3>

<p>注意してサポートされています。</p>