Browse Source

Pre-formatted comments

git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@276657 13f79535-47bb-0310-9956-ffa450edef68
master
Matthew Jason Benson 21 years ago
parent
commit
98fd377b3b
1 changed files with 3 additions and 3 deletions
  1. +3
    -3
      docs/manual/CoreTasks/import.html

+ 3
- 3
docs/manual/CoreTasks/import.html View File

@@ -70,12 +70,12 @@ imports a build file <code>imported.xml</code>, located anywhere on
the file system, and <code>imported.xml</code> reads a set of
properties from <code>imported.properties</code>:</p>

<pre>&lt;-- importing.xml --&gt;
<pre>&lt;!-- importing.xml --&gt;
&lt;project name="importing" basedir="." default="..."&gt;
&nbsp; &lt;import file="${path_to_imported}/imported.xml"/&gt;
&lt;/project&gt;

&lt;-- imported.xml --&gt;
&lt;!-- imported.xml --&gt;
&lt;project name="imported" basedir="." default="..."&gt;
&nbsp; &lt;property file="imported.properties"/&gt;
&lt;/project&gt;
@@ -87,7 +87,7 @@ of <code>imported.xml</code> is ignored by Ant. The right way to use
<code>imported.properties</code> is:</p>

<pre>
&lt;-- imported.xml --&gt;
&lt;!-- imported.xml --&gt;
&lt;project name="imported" basedir="." default="..."&gt;
&nbsp; &lt;dirname property="imported.basedir" file="${ant.file.imported}"/&gt;
&nbsp; &lt;property file="${imported.basedir}/imported.properties"/&gt;


Loading…
Cancel
Save