<?xml version="1.0" encoding="Shift_JIS"?>

<document>

 <properties>
  <title>VTL Reference Guide</title>
  <author email="jvanzyl@zenplex.com">Velocity Documentation Team</author>
  <author email="jcastura@apache.org">John Castura</author>
  <translator>山野内 義一</translator>
  <translator>新穂 洋史</translator>
  <translator>高橋 達男</translator>
  <translator>小山 博史</translator>
  <original>vtl-reference-guide</original>
 </properties>

<body>

<a name="about"/><section name="About this Guide" alias="このガイドについて">
<primary>
<p>
    This guide is the reference for the Velocity Template Language
    (VTL). For more information, please also refer to the <a
    href="user-guide.html">Velocity User Guide</a>.
</p>
</primary>
<p>
    このガイドは、Velocity テンプレート言語 (VTL) のためのリファレンスです。
    詳細は、<a href="user-guide.html">Velocity ユーザガイド</a>を参照してください。
</p>

</section>

<a name="references" /><section name="References" alias="リファレンス">

  <a name="variables" /><subsection name="Variables" alias="変数">
<primary>
    <p>
    Notation:
    </p>
    <p>
    <strong>$</strong> [ <strong>!</strong> ][ <strong>{</strong> ][
    <strong>a..z</strong>, <strong>A..Z</strong> ][ <strong>a..z</strong>,
    <strong>A..Z</strong>, <strong>0..9</strong>, <strong>-</strong>,
    <strong>_</strong> ][ <strong>}</strong> ]
    </p>
</primary>
    <p>
    表記:
    </p>
    
    <p>
    <strong>$</strong> [ <strong>!</strong> ][ <strong>{</strong> ][
    <strong>a..z</strong>, <strong>A..Z</strong> ][ <strong>a..z</strong>,
    <strong>A..Z</strong>, <strong>0..9</strong>, <strong>-</strong>,
    <strong>_</strong> ][ <strong>}</strong> ]
    </p>
    
<primary>
    <p>
    Examples:
    </p>
    <ul>
        <li>Normal notation: <variable>$mud-Slinger_9</variable></li>
        <li>Silent notation: <variable>$!mud-Slinger_9</variable></li>
        <li>Formal notation: <variable>${mud-Slinger_9}</variable></li>
    </ul>
</primary>
    <p>
	例:
	</p>
    
    <ul>
        <li>通常表記: <variable>$mud-Slinger_9</variable></li>
        <li>沈黙表記: <variable>$!mud-Slinger_9</variable></li>
        <li>正式表記: <variable>${mud-Slinger_9}</variable></li>
    </ul>
    
  </subsection>
  
  <a name="properties" /><subsection name="Properties" alias="プロパティ">
<primary>
    <p>
    Notation:
    </p>
    <p>
      <strong>$</strong> [ <strong>{</strong> ][ <strong>a..z</strong>,
      <strong>A..Z</strong> ][ <strong>a..z</strong>, <strong>A..Z</strong>,
      <strong>0..9</strong>, <strong>-</strong>, <strong>_</strong> ]*
      <strong>.</strong>[<strong>a..z</strong>, <strong>A..Z</strong> ][
      <strong>a..z</strong>, <strong>A-Z</strong>, <strong>0..9</strong>,
      <strong>-</strong>, <strong>_</strong> ]* [ <strong>}</strong> ]
    </p>
</primary>
    <p>
    表記:
    </p>
    
    <p>
      <strong>$</strong> [ <strong>{</strong> ][ <strong>a..z</strong>,
      <strong>A..Z</strong> ][ <strong>a..z</strong>, <strong>A..Z</strong>,
      <strong>0..9</strong>, <strong>-</strong>, <strong>_</strong> ]*
      <strong>.</strong>[<strong>a..z</strong>, <strong>A..Z</strong> ][
      <strong>a..z</strong>, <strong>A-Z</strong>, <strong>0..9</strong>,
      <strong>-</strong>, <strong>_</strong> ]* [ <strong>}</strong> ]
    </p>
    
<primary>
    <p>
    Examples:
    </p>

    <ul>
        <li>Regular Notation: $customer.Address</li>
        <li>Formal Notation: ${purchase.Total}</li>
    </ul>
</primary>
    <p>
    例:
    </p>
    
    <ul>
        <li>通常表記: $customer.Address</li>
        <li>正式表記: ${purchase.Total}</li>
    </ul>
  </subsection>

  <a name="methods" /><subsection name="Methods" alias="メソッド">
<primary>
    <p>
    Notation:
    </p>
    <p>
      <strong>$</strong> [ <strong>{</strong> ][ <strong>a..z</strong>,
      <strong>A..Z</strong> ][ <strong>a..z</strong>, <strong>A..Z</strong>,
      <strong>0..9</strong>, <strong>-</strong>, <strong>_</strong> ]*
      <strong>.</strong>[ <strong>a..z</strong>, <strong>A..Z</strong> ][
      <strong>a..z</strong>, <strong>A..Z</strong>, <strong>0..9</strong>,
      <strong>-</strong>, <strong>_</strong> ]*<strong>(</strong> [
      <i>opional parameter list...</i> ] <strong>)</strong> [
      <strong> } </strong>]
    </p>
</primary>
    <p>
    表記:
    </p>
    
    <p>
      <strong>$</strong> [ <strong>{</strong> ][ <strong>a..z</strong>,
      <strong>A..Z</strong> ][ <strong>a..z</strong>, <strong>A..Z</strong>,
      <strong>0..9</strong>, <strong>-</strong>, <strong>_</strong> ]*
      <strong>.</strong>[ <strong>a..z</strong>, <strong>A..Z</strong> ][
      <strong>a..z</strong>, <strong>A..Z</strong>, <strong>0..9</strong>,
      <strong>-</strong>, <strong>_</strong> ]*<strong>(</strong> [
      <i>optional parameter list...</i> ] <strong>)</strong> [
      <strong> } </strong>]
    </p>

<primary>
    <p>
    Examples:
    </p>
    <ul>
      <li>Regular Notation: $customer.getAddress()</li>
      <li>Formal Notation: ${purchase.getTotal()}</li>
      <li>Regular Notation with Parameter List: $page.setTitle( "My Home
      Page" )</li>
    </ul>
</primary>
    <p>
    例:
    </p>
    
    <ul>
      <li>通常表記: $customer.getAddress()</li>
      <li>正式表記: ${purchase.getTotal()}</li>
      <li>通常表記(パラメータリスト付き): $page.setTitle( "My Home Page" )</li>
    </ul>
  </subsection>
  
<primary>
  <p>
  VTL Properties can be used as a shorthand notation for VTL Methods
  that take <em>get</em> and <em>set</em>. Either
  <em>$object.getMethod()</em> or <em>$object.setMethod()</em> can be
  abbreviated as <em>$object.Method</em>. It is generally preferable to
  use a Property when available. The main difference between Properties
  and Methods is that you can specify a parameter list to a Method.
  </p>
</primary>
  <p>
  VTL プロパティは、<em>get</em> と <em>set</em> をとる VTL メソッドの簡略表記として使うことができます。
  <em>$object.getMethod()</em> や <em>$object.setMethod()</em> は、<em>$object.Method</em> と略記できます。
  一般的に、利用できる場合はプロパティを使う方が好ましいです。
  プロパティとメソッドの主な違いは、メソッドにはパラメータリストを指定できるということです。
  </p>
</section>

<a name="directives" /><section name="Directives" alias="指示子">
  <a name="set" /><subsection name="#set - Establishes the value of a reference"
 alias="#set - リファレンスの値を設定">
<primary>
    <p>
    Format:
    </p>

    <p>
    <strong>#set( $</strong>ref <strong>=</strong> [ <strong>"</strong>,
    <strong>'</strong> ]arg[ <strong>"</strong>, <strong>'</strong> ] )
    </p>
</primary>
    <p>
    書式:
    </p>
    
    <p>
    <strong>#set( $</strong>ref <strong>=</strong> [ <strong>"</strong>,
    <strong>'</strong> ]arg[ <strong>"</strong>, <strong>'</strong> ] )
    </p>
    
<primary>
    <p>
    Usage:
    </p>

    <ul>
    <li><em>$ref</em> - The LHS of the assignment must be a variable
    reference or a property reference.</li>
    <li><em>arg</em> - The RHS of the assignment, <em>arg</em> is parsed
    if enclosed in double quotes, and not parsed if enclosed in single
    quotes.  If the RHS evaluates to <em>null</em>, it is <b>not</b>
    assigned to the LHS.</li>
    </ul>
</primary>
    <p>
    使い方:
    </p>
    
    <ul>
    	<li><em>$ref</em> - 左辺は、変数リファレンスまたはプロパティリファレンスでなければなりません。</li>
    	<li><em>arg</em> - 右辺である <em>arg</em> は、
    	ダブルクォーテーションで囲まれた場合解析されますが、
    	シングルクォーテーションで囲まれた場合解析されません。
    	右辺が <em>null</em> と評価された場合、左辺には代入<b>されません</b>。</li>
    </ul>
    
<primary>
    <p>
    Examples:
    </p>

    <ul>
      <li>Variable reference: #set( $monkey = $bill )</li>
      <li>String literal: #set( $monkey.Friend = 'monica' )</li>
      <li>Property reference: #set( $monkey.Blame = $whitehouse.Leak
      )</li>
      <li>Method reference: #set( $monkey.Plan = $spindoctor.weave($web)
      )</li>
      <li>Number literal: #set( $monkey.Number = 123 )</li>
      <li>Range operator: #set( $monkey.Numbers = [1..3] )</li>
      <li>Object array: #set( $monkey.Say = ["Not", $my, "fault"] )</li>
    </ul>
</primary>
    <p>
    例:
    </p>
    
    <ul>
      <li>変数リファレンス: #set( $monkey = $bill )</li>
      <li>文字列リテラル: #set( $monkey.Friend = 'monica' )</li>
      <li>プロパティリファレンス: #set( $monkey.Blame = $whitehouse.Leak )</li>
      <li>メソッドリファレンス: #set( $monkey.Plan = $spindoctor.weave($web) )</li>
      <li>数値リテラル: #set( $monkey.Number = 123 )</li>
      <li>範囲演算子: #set( $monkey.Numbers = [1..3] )</li>
      <li>オブジェクト配列: #set( $monkey.Say = ["Not", $my, "fault"] )</li>
    </ul>
    
<primary>
    <p>
    The RHS can also be a simple arithmetic expression, such as:
    </p>

    <ul>
      <li>Addition: #set( $value = $foo + 1 )</li>
      <li>Subtraction: #set( $value = $bar - 1 )</li>
      <li>Multiplication: #set( $value = $foo * $bar )</li>
      <li>Division: #set( $value = $foo / $bar )</li>
      <li>Remainder: #set( $value = $foo % $bar )</li>
    </ul>
</primary>
    <p>
    右辺には、単純な算術式も記述できます:
    </p>
    
    <ul>
      <li>加算: #set( $value = $foo + 1 )</li>
      <li>減算: #set( $value = $bar - 1 )</li>
      <li>乗算: #set( $value = $foo * $bar )</li>
      <li>除算: #set( $value = $foo / $bar )</li>
      <li>剰余: #set( $value = $foo % $bar )</li>
    </ul>
  </subsection>

  <a name="ifelse" /><subsection 
name="#if / #elseif / #else - output conditional on truth of statements"
alias="#if / #elseif / #else - 条件分岐">
<primary>
    <p>
    Format:
    </p>

    <p>
    <strong>#if(</strong> [condition] <strong>)</strong> [output] [
    <strong>#elseif( </strong>[condition] <strong>)</strong> [output] ]* [
    <strong>#else</strong> [output] ]
    <strong>#end</strong>
    </p>
</primary>
    <p>
    書式:
    </p>
    
    <p>
    <strong>#if(</strong> [condition] <strong>)</strong> [output] [
    <strong>#elseif( </strong>[condition] <strong>)</strong> [output] ]* [
    <strong>#else</strong> [output] ]
    <strong>#end</strong>
    </p>
    
<primary>
    <p>
    Usage:
    </p>

    <ul>
    <li><em>condition</em> - If a boolean, considered true if it has a
    true false; if not a boolean, considered true if not null.</li>
    <li><em>output</em> - May contain VTL.</li>
    </ul>
</primary>
    <p>
    使い方:
    </p>
    
    <ul>
    <li><em>condition</em> - boolean 型の場合、値そのもので true もしくは false と解釈されます。boolean 型以外の場合、null 以外が true と解釈されます。</li>
    <li><em>output</em> - VTL を含みます。</li>
    </ul>
<primary>
    <p>
    Examples:
    </p>

    <ul>
       <li>Equivalent Operator: #if( $foo == $bar )</li>
       <li>Greater Than: #if( $foo > 42 )</li>
       <li>Less Than: #if( $foo &lt; 42 )</li>
       <li>Greater Than or Equal To: #if( $foo >= 42 )</li>
       <li>Less Than or Equal To: #if( $foo &lt;= 42 )</li>
       <li>Equals Number: #if( $foo == 42 )</li>
       <li>Equals String: #if( $foo == "bar" )</li>
       <li>Boolean NOT: #if( !$foo )</li>
    </ul>
</primary>
    <p>
    例:
    </p>

    <ul>
       <li>等値演算子: #if( $foo == $bar )</li>
       <li>より大きい: #if( $foo > 42 )</li>
       <li>より小さい: #if( $foo &lt; 42 )</li>
       <li>以上　　　: #if( $foo >= 42 )</li>
       <li>以下　　　: #if( $foo &lt;= 42 )</li>
       <li>数値の等号: #if( $foo == 42 )</li>
       <li>文字列等号: #if( $foo == "bar" )</li>
       <li>論理否定　: #if( !$foo )</li>
    </ul>    
  </subsection>

  <a name="foreach" /><subsection name="#foreach - Loops through a list of objects" 
alias="#foreach - オブジェクトのリストでループ">
<primary>
    <p>
    Format:
    </p>

    <p>
    <strong>#foreach(</strong> <em>$ref</em> <strong>in</strong> <em>arg</em>
    <strong>)</strong> <em>statement</em> <strong>#end</strong>
    </p>
</primary>
    <p>
    書式:
    </p>
    
    <p>
    <strong>#foreach(</strong> <em>$ref</em> <strong>in</strong> <em>arg</em>
    <strong>)</strong> <em>statement</em> <strong>#end</strong>
    </p>
    
<primary>
    <p>
    Usage:
    </p>

    <ul>
    <li><em>$ref</em> - The first variable reference is the item.</li>

    <li><em>arg</em> - May be one of the following: a reference to a
        list (i.e. object array, collection, or map), an array list, or
        the range operator.</li>

    <li>
    <em>statement</em> - What is output each time Velocity finds a
    valid item in the list denoted above as <i>arg</i>.  This output is
    any valid VTL and is rendered each iteration of the loop.
    </li>

    </ul>
</primary>
    <p>
    使い方:
    </p>
    
    <ul>
    <li><em>$ref</em> - 最初の変数リファレンスは、リストの項目です。</li>
    <li><em>arg</em> - リストのリファレンス(つまりオブジェクト配列/コレクション/マップ)、
    配列リスト、範囲演算子のいずれかです。</li>
    <li><em>statement</em> - 上記で <i>arg</i> と示されたリスト内にある、
    有効なアイテムの分だけ出力する内容です。
    この出力は有効なVTLなら何でもよく、ループの繰り返し毎に処理されます。</li>
    </ul>

<primary>
    <p>
    Examples of the #foreach(), omitting the statement block :
    </p>

    <ul>
      <li>Reference: #foreach ( $item in $items )</li>
      <li>Array list: #foreach ( $item in ["Not", $my, "fault"] )</li>
      <li>Range operator: #foreach ( $item in [1..3] )</li>
    </ul>

</primary>
    <p>
    #foreach() の例を示します(statement ブロックは省略しています):
    </p>

    <ul>
      <li>リファレンス: #foreach ( $item in $items )</li>
      <li>配列リスト: #foreach ( $item in ["Not", $my, "fault"] )</li>
      <li>範囲演算子: #foreach ( $item in [1..3] )</li>
    </ul>

<primary>
    <p>
    Velocity provides an easy way to get the loop counter so that you
    can do something like the following:
    </p>
</primary>
    <p>
    Velocity は、以下のようにループ回数を取得する簡単な方法を提供します:
    </p>

<source><![CDATA[
<table>
#foreach( $customer in $customerList )
    <tr><td>$velocityCount</td><td>$customer.Name</td></tr>
#end
</table>
]]></source>

<primary>
    <p>
    The default name for the loop counter variable reference, which is
    specified in the velocity.properties file, is $velocityCount. By
    default the counter starts at 1, but this can be set to either 0 or
    1 in the <code>velocity.properties</code> file. Here's what the loop
    counter properties section of the <code>velocity.properties</code>
    file appears:
    </p>
</primary>
    <p>
    ループカウンタの変数リファレンスのデフォルトの名前は、$velocityCount です。
    名前は velocity.properties ファイルで指定することが出来ます。
    デフォルトで、カウンタは 1 から開始しますが、
    <code>velocity.properties</code> ファイルで 0 や 1 にセットできます。
    ここで <code>velocity.properties</code> ファイルに現れるループカウンタの
    プロパティセクションを示します。
    </p>

<primary>
<source><![CDATA[
# Default name of the loop counter
# variable refernce.
counter.name = velocityCount

# Default starting value of the loop
# counter variable reference.
counter.initial.value = 1
]]></source>
</primary>
<source><![CDATA[
# ループカウンタ変数リファレンスのデフォルト名.
counter.name = velocityCount

# ループカウンタ変数リファレンスのデフォルト開始値.
counter.initial.value = 1
]]></source>

  </subsection>

  <a name="include" />
  <subsection name="#include - Renders local file(s) that are not
                    parsed by Velocity" alias="#include - ローカルファイルを処理するが、Velocity に解析させない">
<primary>
    <p>
    Format:
    </p>

    <p>
    <strong>#include( </strong>arg[, arg2, ... argn]<strong> )</strong>
    </p>

    <ul>
    <li><em>arg</em> - Refers to a valid file under TEMPLATE_ROOT.</li>
    </ul>
</primary>
    <p>
    書式:
    </p>

    <p>
    <strong>#include( </strong>arg[, arg2, ... argn]<strong> )</strong>
    </p>

    <ul>
    <li><em>arg</em> - TEMPLATE_ROOT 下で有効なファイルを参照します。</li>
    </ul>

<primary>
    <p>
    Examples:
    </p>

    <ul>
      <li>String: #include( "disclaimer.txt", "opinion.txt" )</li>
      <li>Variable: #include( $foo, $bar )</li>
    </ul>
</primary>
    <p>
    例:
    </p>
    
    <ul>
      <li>文字列: #include( "disclaimer.txt", "opinion.txt" )</li>
      <li>変数:   #include( $foo, $bar )</li>
    </ul>
  </subsection>

  <a name="parse" />
  <subsection name="#parse - Renders a local template that is parsed by
                    Velocity" alias="#parse - ローカルテンプレートを処理して Velocity に解析させる">
<primary>
    <p>
    Format:
    </p>

    <p>
    <strong>#parse(</strong> arg <strong>)</strong>
    </p>

    <ul>
    <li><em>arg</em> - Refers to a template under TEMPLATE_ROOT.</li>
    </ul>
</primary>
    <p>
    書式:
    </p>
    
    <p>
    <strong>#parse(</strong> arg <strong>)</strong>
    </p>
    
    <ul>
    <li><em>arg</em> - TEMPLATE_ROOT 下で有効なファイルを参照します。</li>
    </ul>

<primary>
    <p>
    Examples:
    </p>

    <ul>
      <li>String: #parse( "lecorbusier.vm" )</li>
      <li>Variable: #parse( $foo )</li>
    </ul>
</primary>
    <p>
    例:
    </p>

    <ul>
      <li>文字列: #parse( "lecorbusier.vm" )</li>
      <li>変数: #parse( $foo )</li>
    </ul>

<primary>
    <p>
    Recursion permitted. See <em>parse_directive.maxdepth</em> in
    <code>velocity.properties</code>
    to change from parse depth. (The default parse depth is 10.)
    </p>
</primary>
    <p>
    再帰解析も可能です。
    解析レベルを変更するためには、<code>velocity.properties</code >内の <em>parse_directive.maxdepth</em> を確認してください。
    (デフォルトの解析レベルは 10 です。)
    </p>
    
  </subsection>

  <a name="stop" />
  <subsection name="#stop - Stops the template engine" alias="#stop - テンプレートエンジンを停止する">
<primary>
    <p>
    Format:
    </p>

    <p>
    <strong>#stop</strong>
    </p>
</primary>
    <p>
    書式:
    </p>
    
    <p>
    <strong>#stop</strong>
    </p>

<primary>
    <p>
    Usage:
    </p>

    <p>
    This will stop execution of the current template. This is good for
    debugging a template.
    </p>
</primary>
    <p>
    使い方:
    </p>
    
    <p>
    現在のテンプレートで実行を止めます。
    テンプレートをデバッグするのに使えます。
    </p>
    
  </subsection>

  <a name="velocimacro" />
  <subsection name="#macro - Allows users to define a Velocimacro (VM),
        a repeated segment of a VTL template, as required" alias="#macro - Velocimacro (VM)を定義する。 
        必要に応じて VTL テンプレートのセグメントを容易に繰り返せる。">
<primary>
    <p>
    Format:
    </p>

    <p>
    <strong>#macro(</strong> vmname $arg1 [ $arg2 $arg3 ... $argn ]
    <strong>)</strong> [ VM VTL code... ] <strong>#end</strong>
    </p>

    <ul>
    <li><em>vmname</em> - Name used to call the VM
    (<em>#vmname</em>)</li>
    <li><em>$arg1 $arg2 [ ... ]</em> - Arguments to the VM. There can be
    any number of arguments, but the number used at invocation must
    match the number specified in the definition.</li>
    <li><em>[ VM VTL code... ]</em> - Any valid VTL code, anything you
    can put into a template, can be put into a VM.</li>
    </ul>
</primary>
    <p>
    書式:
    </p>
    
    <p>
    <strong>#macro(</strong> vmname $arg1 [ $arg2 $arg3 ... $argn ]
    <strong>)</strong> [ VM VTL code... ] <strong>#end</strong>
    </p>
    
    <ul>
    <li><em>vmname</em> - VM を呼び出すのに使う名前
    (<em>#vmname</em>)</li>
    <li><em>$arg1 $arg2 [ ... ]</em> - VM に対する引数です。引数の数はいくつでもかまいませんが、呼び出し側の引数の数と定義側の引数の数が一致しなければなりません。</li>
    <li><em>[ VM VTL code... ]</em> - テンプレートに置くことができる有効な VTL コードなら何でも、VM に入れることができます。</li>
    </ul>
    
<primary>
    <p>
    Once defined, the VM is used like any other VTL directive in a
    template.
    </p>
</primary>
    <p>
    定義した VM は、テンプレート内で他の VTL 指示子と同様に扱われます。
    </p>

<source><![CDATA[
#vmname( $arg1 $arg2 )
]]></source>

<primary>
    <p>
    VMs can be defined in one of two places:
    </p>
    <ol>
    <li><i>Template library:</i> can be either VMs pre-packaged with
    Velocity or custom-made, user-defined, site-specific VMs;
     available from any template</li>
    <li><i>Inline:</i> found in regular templates, only usable when
    <em>velocimacro.permissions.allowInline=true</em> in
    <code>velocity.properties</code>.</li>
    </ol>
</primary>
    <p>
    VM は、2つの場所のいずれかで定義できます。
    </p>

    <ol>
    <li><i>テンプレート ライブラリ:</i> Velocity に同梱のVMである場合と、
    カスタムメイドで、ユーザが定義し、サイト固有の VM である場合があります。
    どのテンプレートからでも使えます。</li>
    <li><i>インライン:</i> 通常のテンプレート内で定義されたもので、 <code>velocity.properties</code>内で<em>velocimacro.permissions.allowInline=true</em>となっている場合のみ使用可能です。</li>
    </ol>

  </subsection>

</section>

<a name="Comments" />
<section name="Comments" alias="コメント">
<primary>
    <p>
    Comments are not rendered at runtime.
    </p>
</primary>
    <p>
    コメントは実行時には解析されません。
    </p>
    
    <a name="Single Line" /><subsection name="Single Line" alias="単一行コメント">
<primary>
    <p>
    Example:
    </p>

    <p>
    <strong>## This is a comment.</strong>
    </p>
</primary>
    <p>
    例:
    </p>
    
    <p>
    <strong>## コメントです。</strong>
    </p>
    
    </subsection>
    <a name="Multi Line" /><subsection name="Multi Line" alias="複数行コメント">
<primary>
    <p>
    Example:
    </p>

    <p>
    <strong>
    #*<br/>
    This is a multiline comment.<br/>
    This is the second line<br/>
    *#
    </strong>
    </p>
</primary>
    <p>
    例:
    </p>
    
    <p>
    <strong>
    #*<br/>
    複数行コメントです。<br/>
    2行目です。<br/>
    *#
    </strong>
    </p>
    
    </subsection>
</section>

</body>
</document>


