You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@ant.apache.org by gi...@apache.org on 2018/02/09 05:54:13 UTC

[3/4] ant git commit: Chop off redundant blockquotes

http://git-wip-us.apache.org/repos/asf/ant/blob/7eeb33d5/manual/Tasks/presetdef.html
----------------------------------------------------------------------
diff --git a/manual/Tasks/presetdef.html b/manual/Tasks/presetdef.html
index d975bf9..8becea2 100644
--- a/manual/Tasks/presetdef.html
+++ b/manual/Tasks/presetdef.html
@@ -71,7 +71,6 @@
       srcdir and destdir
       attributes set. It also has a src element to source files from a generated
       directory.
-    <blockquote>
 <pre class="code">
 &lt;presetdef name="my.javac"&gt;
    &lt;javac debug="${debug}" deprecation="${deprecation}"
@@ -80,24 +79,18 @@
    &lt;/javac&gt;
 &lt;/presetdef&gt;
 </pre>
-    </blockquote>
       This can be used as a normal javac task - example:
-    <blockquote>
 <pre class="code">
 &lt;my.javac/&gt;
 </pre>
-    </blockquote>
       The attributes specified in the preset task may be overridden - i.e.
       they may be seen as optional attributes - example:
-    <blockquote>
 <pre class="code">
 &lt;my.javac srcdir="${test.src}" deprecation="no"/&gt;
 </pre>
-    </blockquote>
       One may put a presetdef definition in an antlib.
       For example suppose the jar file antgoodies.jar has
       the antlib.xml as follows:
-    <blockquote>
 <pre class="code">
 &lt;antlib&gt;
    &lt;taskdef resource="com/acme/antgoodies/tasks.properties"/&gt;
@@ -108,9 +101,7 @@
    &lt;/presetdef&gt;
 &lt;/antlib&gt;
 </pre>
-    </blockquote>
       One may then use this in a build file as follows:
-    <blockquote>
 <pre class="code">
 &lt;project default="example" xmlns:antgoodies="antlib:com.acme.antgoodies"&gt;
    &lt;target name="example"&gt;
@@ -121,12 +112,10 @@
    &lt;/target&gt;
 &lt;/project&gt;
 </pre>
-    </blockquote>
     <p>
       The following is an example of evaluation of properties when the
       definition is used:
     </p>
-     <blockquote>
 <pre class="code">
 &lt;target name="defineandcall"&gt;
    &lt;presetdef name="showmessage"&gt;
@@ -143,11 +132,9 @@
    &lt;showmessage/&gt;
 &lt;/target&gt;
 </pre>
-     </blockquote>
      <p>
         The command ant defineandcall results in the output:
      </p>
-     <blockquote>
 <pre class="code">
 defineandcall:
 [showmessage] message is '${message}'
@@ -156,14 +143,13 @@ defineandcall:
 called:
 [showmessage] message is 'Message 2'
 </pre>
-     </blockquote>
 <p>
 It is possible to use a trick to evaluate properties when the definition is
 <em>made</em> rather than used. This can be useful if you do not expect some
 properties to be available in child builds run with
 <code>&lt;ant ... inheritall="false"&gt;</code>:
 </p>
-<blockquote><pre class="code">
+<pre class="code">
 &lt;macrodef name="showmessage-presetdef"&gt;
   &lt;attribute name="messageval"/&gt;
   &lt;presetdef name="showmessage"&gt;
@@ -171,7 +157,7 @@ properties to be available in child builds run with
   &lt;/presetdef&gt;
 &lt;/macrodef&gt;
 &lt;showmessage-presetdef messageval="${message}"/&gt;
-</pre></blockquote>
+</pre>
 
   </body>
 </html>

http://git-wip-us.apache.org/repos/asf/ant/blob/7eeb33d5/manual/Tasks/propertyfile.html
----------------------------------------------------------------------
diff --git a/manual/Tasks/propertyfile.html b/manual/Tasks/propertyfile.html
index f698301..49444b7 100644
--- a/manual/Tasks/propertyfile.html
+++ b/manual/Tasks/propertyfile.html
@@ -191,7 +191,7 @@ The slashes conform to the expectations of the Properties class.  The file will
 The layout and comment of the original file is preserved. New properties are added at the end of the file. Existing properties are overwritten in place.
 </p>
 
-<blockquote><pre>&lt;propertyfile
+<pre>&lt;propertyfile
     file=&quot;my.properties&quot;
     comment=&quot;My properties&quot;&gt;
   &lt;entry  key=&quot;akey&quot; value=&quot;avalue&quot;/&gt;
@@ -200,10 +200,10 @@ The layout and comment of the original file is preserved. New properties are add
   &lt;entry  key=&quot;formated.int&quot; type=&quot;int&quot; default=&quot;0013&quot; operation=&quot;+&quot; pattern=&quot;0000&quot;/&gt;
   &lt;entry  key=&quot;formated.date&quot; type=&quot;date&quot; value=&quot;now&quot; pattern=&quot;DDD HH:mm&quot;/&gt;
 &lt;/propertyfile&gt;
-</pre></blockquote>
+</pre>
 <p>
 To produce dates relative from today :</p>
-<blockquote><pre>&lt;propertyfile
+<pre>&lt;propertyfile
     file=&quot;my.properties&quot;
     comment=&quot;My properties&quot;&gt;
   &lt;entry  key=&quot;formated.date-1&quot;
@@ -213,21 +213,21 @@ To produce dates relative from today :</p>
       type=&quot;date&quot; default=&quot;now&quot; pattern=&quot;DDD&quot;
       operation=&quot;+&quot; value=&quot;1&quot;/&gt;
 &lt;/propertyfile&gt;
-</pre></blockquote>
+</pre>
 
 <p>
 Concatenation of strings :</p>
-<blockquote><pre>&lt;propertyfile
+<pre>&lt;propertyfile
     file=&quot;my.properties&quot;
     comment=&quot;My properties&quot;&gt;
   &lt;entry  key=&quot;progress&quot; default=&quot;&quot; operation=&quot;+&quot; value=&quot;.&quot;/&gt;
 &lt;/propertyfile&gt;
-</pre></blockquote>
+</pre>
 <p>Each time called, a &quot;.&quot; will be appended to &quot;progress&quot;
 </p>
 
 <p>Pumps the project version to the next minor version (increase minor and set path=0):</p>
-<blockquote><pre>&lt;target name="nextMinorVersion"&gt;
+<pre>&lt;target name="nextMinorVersion"&gt;
    &lt;property
      name="header"
      value="##Generated file - do not modify!"/&gt;
@@ -238,7 +238,7 @@ Concatenation of strings :</p>
      &lt;entry key="product.build.date"    type="date" value="now" /&gt;
   &lt;/propertyfile&gt;
 &lt;/target&gt;
-</pre></blockquote>
+</pre>
 After running this target the version changed e.g. from 3.2.2 to 3.3.0.
 
 </body>

http://git-wip-us.apache.org/repos/asf/ant/blob/7eeb33d5/manual/Tasks/renameextensions.html
----------------------------------------------------------------------
diff --git a/manual/Tasks/renameextensions.html b/manual/Tasks/renameextensions.html
index d54d1fa..664edfd 100644
--- a/manual/Tasks/renameextensions.html
+++ b/manual/Tasks/renameextensions.html
@@ -105,16 +105,14 @@ supports most attributes of <code>&lt;fileset&gt;</code>
   </tr>
 </table>
 <h3>Examples</h3>
-<blockquote>
-  <p><code>&lt;renameext srcDir=&quot;/source/project1&quot;
+
+  <pre>&lt;renameext srcDir=&quot;/source/project1&quot;
               includes=&quot;**&quot;
               excludes=&quot;**/samples/*&quot;
               fromExtension=&quot;.java.keep&quot;
               toExtension=&quot;.java&quot;
               replace=&quot;true&quot;/&gt;
-</code>
-  </p>
-</blockquote>
+  </pre>
 
 </body>
 </html>

http://git-wip-us.apache.org/repos/asf/ant/blob/7eeb33d5/manual/Tasks/replace.html
----------------------------------------------------------------------
diff --git a/manual/Tasks/replace.html b/manual/Tasks/replace.html
index bc1988f..c2981cd 100644
--- a/manual/Tasks/replace.html
+++ b/manual/Tasks/replace.html
@@ -159,30 +159,30 @@ them.</p>
   <tr>
     <td valign="top">expandProperties</td>
     <td valign="top">Whether to expand properties in the nested text.
-      <em>since Ant 1.8.0</em>.</td>
+      <em>Since Ant 1.8.0</em>.</td>
     <td align="center">No, defaults to true.</td>
   </tr>
 </table>
 <h3>Examples</h3>
-<blockquote><pre>
+<pre>
 &lt;replace dir=&quot;${src}&quot; value=&quot;wombat&quot;&gt;
   &lt;include name=&quot;**/*.html&quot;/&gt;
   &lt;replacetoken&gt;&lt;![CDATA[multi line
 token]]&gt;&lt;/replacetoken&gt;
 &lt;/replace&gt;
-</pre></blockquote>
+</pre>
 <p>replaces occurrences of the string &quot;multi
 line<i>\n</i>token&quot; with the string &quot;wombat&quot;, in all
 HTML files in the directory <code>${src}</code>.Where <i>\n</i> is
 the platform specific line separator.</p>
-<blockquote><pre>
+<pre>
 &lt;replace file=&quot;${src}/index.html&quot;&gt;
   &lt;replacetoken&gt;&lt;![CDATA[two line
 token]]&gt;&lt;/replacetoken&gt;
   &lt;replacevalue&gt;&lt;![CDATA[two line
 token]]&gt;&lt;/replacevalue&gt;
 &lt;/replace&gt;
-</pre></blockquote>
+</pre>
 <h4>replacefilter</h4>
 <p>In addition to allowing for multiple replacements, optional nested <code>&lt;replacefilter&gt;</code> elements allow replacement values to be extracted from a property file. The name of this file is specified using the <code>&lt;replace&gt;</code> attribute <i>propertyFile</i>.
 </p>
@@ -213,7 +213,7 @@ token]]&gt;&lt;/replacevalue&gt;
 <p>If neither <i>value</i> nor <i>property</i> is used, the value provided using the <code>&lt;replace&gt;</code> attribute <i>value</i> and/or the <code>&lt;replacevalue&gt;</code> element is used. If no value was specified using either of these options, the token is replaced with an empty string.
 </p>
 <h3>Examples</h3>
-<blockquote><pre>
+<pre>
 &lt;replace
     file=&quot;configure.sh&quot;
     value=&quot;defaultvalue&quot;
@@ -231,7 +231,7 @@ token]]&gt;&lt;/replacevalue&gt;
     &lt;replacevalue&gt;value4&lt;/replacevalue&gt;
   &lt;/replacefilter&gt;
 &lt;/replace&gt;
-</pre></blockquote>
+</pre>
 <p>In file <code>configure.sh</code>, replace all instances of &quot;@token1@&quot; with &quot;defaultvalue&quot;, all instances of &quot;@token2@&quot; with &quot;value2&quot;, and all instances of &quot;@token3@&quot; with the value of the property &quot;property.key&quot;, as it appears in property file <code>src/name.properties</code>.</p>
 <p><strong>Note</strong>: It is possible to use either the <i>token</i>/<code>&lt;replacetoken&gt;</code> and <i>value</i>/<code>&lt;replacevalue&gt;</code> attributes/elements, the nested replacefilter elements, or both in the same operation.</p>
 

http://git-wip-us.apache.org/repos/asf/ant/blob/7eeb33d5/manual/Tasks/replaceregexp.html
----------------------------------------------------------------------
diff --git a/manual/Tasks/replaceregexp.html b/manual/Tasks/replaceregexp.html
index 68e6523..68f2c72 100644
--- a/manual/Tasks/replaceregexp.html
+++ b/manual/Tasks/replaceregexp.html
@@ -115,23 +115,22 @@ value, in the file <code>${src}/build.properties</code></p>
 <p>This task supports a nested <i><a href="../Types/regexp.html">Regexp</a></i> element to specify
    the regular expression.  You can use this element to refer to a previously
    defined regular expression datatype instance.</p>
-<blockquote>
+
      &lt;regexp id="id" pattern="alpha(.+)beta"/&gt;<br>
      &lt;regexp refid="id"/&gt;
-</blockquote>
+
 <p>This task supports a nested <i>Substitution</i> element to specify
    the substitution pattern.  You can use this element to refer to a previously
    defined substitution pattern datatype instance.</p>
-<blockquote>
+
      &lt;substitution id="id" expression="beta\1alpha"/&gt;<br>
      &lt;substitution refid="id"/&gt;
-</blockquote>
+
 
 
 <h3>Examples</h3>
 
-<blockquote>
-  <pre>
+<pre>
 &lt;replaceregexp byline=&quot;true&quot;&gt;
   &lt;regexp pattern=&quot;OldProperty=(.*)&quot;/&gt;
   &lt;substitution expression=&quot;NewProperty=\1&quot;/&gt;
@@ -139,62 +138,54 @@ value, in the file <code>${src}/build.properties</code></p>
     &lt;include name=&quot;*.properties&quot;/&gt;
   &lt;/fileset&gt;
 &lt;/replaceregexp&gt;
-</pre></blockquote>
+</pre>
 <p>replaces occurrences of the property name &quot;OldProperty&quot;
  with &quot;NewProperty&quot; in a properties file, preserving the existing
 value, in all files ending in <code>.properties</code> in the current directory</p>
 
-<br>
-<blockquote>
 <pre>&lt;replaceregexp match="\s+" replace=" " flags="g" byline="true"&gt;
     &lt;fileset dir="${html.dir}" includes="**/*.html"/&gt;
 &lt;/replaceregexp&gt;
-</pre></blockquote>
+</pre>
 <p>replaces all whitespaces (blanks, tabs, etc) by one blank remaining the
 line separator. So with input</p>
-<blockquote>
+
 <pre>
 &lt;html&gt;    &lt;body&gt;
 &lt;&lt;TAB&gt;&gt;&lt;h1&gt;    T E S T   &lt;/h1&gt;  &lt;&lt;TAB&gt;&gt;
 &lt;&lt;TAB&gt;&gt; &lt;/body&gt;&lt;/html&gt;
-</pre></blockquote>
+</pre>
 <p>would converted to</p>
-<blockquote>
 <pre>
 &lt;html&gt; &lt;body&gt;
  &lt;h1&gt; T E S T &lt;/h1&gt; &lt;/body&gt;&lt;/html&gt;
 </pre>
-</blockquote>
 
 <br><!-- small distance from code of the previous example -->
-<blockquote>
+
 <pre>&lt;replaceregexp match="\\n" replace="${line.separator}" flags="g" byline="true"&gt;
     &lt;fileset dir="${dir}"/&gt;
 &lt;/replaceregexp&gt;
-</pre></blockquote>
+</pre>
 <p>replaces all <tt>\n</tt> markers (beware the quoting of the backslash) by a line break.
 So with input</p>
-<blockquote>
 <pre>
 one\ntwo\nthree
-</pre></blockquote>
+</pre>
 <p>would converted to</p>
-<blockquote>
 <pre>
 one
 two
 three
 </pre>
-</blockquote>
+
 <p>Beware that inserting line breaks could break file syntax. For example in xml:</p>
-<blockquote>
 <pre>
 &lt;root&gt;
   &lt;text&gt;line breaks \n should work in text&lt;/text&gt;
   &lt;attribute value=&quot;but breaks \n attributes&quot; /&gt;
 &lt;/root&gt;
 </pre>
-</blockquote>
 
 </body>
 </html>

http://git-wip-us.apache.org/repos/asf/ant/blob/7eeb33d5/manual/Tasks/rexec.html
----------------------------------------------------------------------
diff --git a/manual/Tasks/rexec.html b/manual/Tasks/rexec.html
index 7874c7b..c3940fc 100644
--- a/manual/Tasks/rexec.html
+++ b/manual/Tasks/rexec.html
@@ -100,14 +100,14 @@ this is "true" by default
 <h3>Example</h3>
 A simple example of connecting to a server and running a command.
 
-<blockquote><pre>
+<pre>
 &lt;rexec userid=&quot;bob&quot; password=&quot;badpass&quot; server=&quot;localhost&quot; command=&quot;ls&quot;/&gt;
-</pre></blockquote>
+</pre>
 
 The task can be used with other ports as well:
-<blockquote><pre>
+<pre>
 &lt;rexec port=&quot;80&quot; userid=&quot;bob&quot; password=&quot;badpass&quot; server=&quot;localhost&quot; command=&quot;ls&quot;/&gt;
-</pre></blockquote>
+</pre>
 
 </body>
 </html>

http://git-wip-us.apache.org/repos/asf/ant/blob/7eeb33d5/manual/Tasks/script.html
----------------------------------------------------------------------
diff --git a/manual/Tasks/script.html b/manual/Tasks/script.html
index eedbb17..375c1f9 100644
--- a/manual/Tasks/script.html
+++ b/manual/Tasks/script.html
@@ -162,7 +162,7 @@ different location values.</p>
   </p>
 <h3>Examples</h3>
 The following snippet shows use of five different languages:
-  <blockquote><pre>
+  <pre>
     &lt;property name="message" value="Hello world"/&gt;
 
     &lt;script language="groovy"&gt;
@@ -185,7 +185,6 @@ The following snippet shows use of five different languages:
 print "message is %s" % message
     &lt;/script&gt;
 </pre>
-  </blockquote>
   <p>
   Note that for the <i>jython</i> example, the script contents <b>must</b>
   start on the first column.
@@ -196,28 +195,26 @@ print "message is %s" % message
   <p>
     The following script shows a little more complicated jruby example:
   </p>
-  <blockquote><pre>
+  <pre>
 &lt;script language="ruby"&gt;
   xmlfiles = Dir.new(".").entries.delete_if { |i| ! (i =~ /\.xml$/) }
   xmlfiles.sort.each { |i| $self.log(i) }
 &lt;/script&gt;
 </pre>
-  </blockquote>
   <p>
     The same example in groovy is:
   </p>
-  <blockquote><pre>
+  <pre>
 &lt;script language="groovy"&gt;
   xmlfiles = new java.io.File(".").listFiles().findAll{ it =~ "\.xml$"}
   xmlfiles.sort().each { self.log(it.toString())}
 &lt;/script&gt;
 </pre>
-  </blockquote>
   <p>
     The following example shows the use of classpath to specify the location
     of the beanshell jar file.
   </p>
-  <blockquote><pre>
+  <pre>
 &lt;script language="beanshell" setbeans="true"&gt;
   &lt;classpath&gt;
     &lt;fileset dir="${user.home}/lang/beanshell" includes="*.jar" /&gt;
@@ -225,12 +222,11 @@ print "message is %s" % message
   System.out.println("Hello world");
 &lt;/script&gt;
 </pre>
-  </blockquote>
   <p>
     The following script uses javascript to create a number of
     echo tasks and execute them.
   </p>
-<blockquote><pre>
+<pre>
 &lt;project name=&quot;squares&quot; default=&quot;main&quot; basedir=&quot;.&quot;&gt;
 
   &lt;target name=&quot;main&quot;&gt;
@@ -248,9 +244,9 @@ print "message is %s" % message
   &lt;/target&gt;
 
 &lt;/project&gt;
-</pre></blockquote>
+</pre>
 <p>generates</p>
-<blockquote><pre>
+<pre>
 main:
 1
 4
@@ -264,11 +260,11 @@ main:
 100
 
 BUILD SUCCESSFUL
-</pre></blockquote>
+</pre>
 
 <p>Now a more complex example using the Java API and the Ant API. The goal is to list the
 filesizes of all files a <code>&lt;fileset/&gt;</code> caught.</p>
-<blockquote><pre>
+<pre>
 
 &lt;?xml version="1.0" encoding="ISO-8859-1"?&gt;
 &lt;project name="<font color=blue>MyProject</font>" basedir="." default="main"&gt;
@@ -316,7 +312,7 @@ filesizes of all files a <code>&lt;fileset/&gt;</code> caught.</p>
     ]]&gt;&lt;/script&gt;
   &lt;/target&gt;
 &lt;/project&gt;
-</pre></blockquote>
+</pre>
 <p>We want to use the Java API. Because we don't want always typing the package signature
 we do an import. Rhino knows two different methods for import statements: one for packages
 and one for a single class. By default only the <i>java</i> packages are available, so
@@ -343,7 +339,7 @@ appropriate logging before and after invoking execute().
   task. This task will add filesets and paths to a referenced
   path. If the path does not exist, it will be created.
 </p>
-<blockquote><pre>
+<pre>
 &lt;!--
        Define addtopath task
  --&gt;
@@ -372,14 +368,14 @@ appropriate logging before and after invoking execute().
     }
     project.addTaskDefinition("addtopath", AddToPath.class);
 &lt;/script&gt;
-</pre></blockquote>
+</pre>
   <p>
     An example of using this task to create a path
     from a list of directories (using antcontrib's
     <a href="http://ant-contrib.sourceforge.net/tasks/tasks/for.html">
       &lt;for&gt;</a> task) follows:
   </p>
-<blockquote><pre>
+<pre>
 &lt;path id="main.path"&gt;
   &lt;fileset dir="build/classes"/&gt;
 &lt;/path&gt;
@@ -392,7 +388,7 @@ appropriate logging before and after invoking execute().
     &lt;/addtopath&gt;
   &lt;/sequential&gt;
 &lt;/ac:for&gt;
-</pre></blockquote>
+</pre>
 
 </body>
 </html>

http://git-wip-us.apache.org/repos/asf/ant/blob/7eeb33d5/manual/Tasks/scriptdef.html
----------------------------------------------------------------------
diff --git a/manual/Tasks/scriptdef.html b/manual/Tasks/scriptdef.html
index 1d016e6..554e04e 100644
--- a/manual/Tasks/scriptdef.html
+++ b/manual/Tasks/scriptdef.html
@@ -282,8 +282,8 @@ error. For example in the above script, removing the closing curly bracket
 would result in this error
 </p>
 
-<p><code>build.xml:15: SyntaxError: missing } in compound
-statement (scriptdef <code>&lt;scripttest2&gt;</code>; line 10)</code></p>
+<pre>build.xml:15: SyntaxError: missing } in compound
+statement (scriptdef <code>&lt;scripttest2&gt;</code>; line 10)</pre>
 
 <p>
 Script errors are only detected when a script task is actually executed.

http://git-wip-us.apache.org/repos/asf/ant/blob/7eeb33d5/manual/Tasks/setpermissions.html
----------------------------------------------------------------------
diff --git a/manual/Tasks/setpermissions.html b/manual/Tasks/setpermissions.html
index 28bf999..7ef1449 100644
--- a/manual/Tasks/setpermissions.html
+++ b/manual/Tasks/setpermissions.html
@@ -91,18 +91,18 @@
 <p><a href="../Types/resources.html#collection">Resource
 Collection</a>s are used to select groups of resources.</p>
 <h3>Examples</h3>
-  <blockquote><pre>
+<pre>
 &lt;setpermissions mode=&quot;755&quot;&gt;
   &lt;file file=&quot;${dist}/start.sh&quot;/&gt;
 &lt;/setpermissions&gt;
-  </pre></blockquote>
+</pre>
 <p>makes the &quot;start.sh&quot; file readable and executable for
   anyone and in addition writable by the owner.</p>
-  <blockquote><pre>
+<pre>
 &lt;setpermissions permissions=&quot;OWNER_READ,OWNER_WRITE,OWNER_EXECUTE,OTHERS_READ,OTHERS_EXECUTE,GROUP_READ,GROUP_EXECUTE&quot;&gt;
   &lt;file file=&quot;${dist}/start.sh&quot;/&gt;
 &lt;/setpermissions&gt;
-  </pre></blockquote>
+</pre>
 <p>makes the &quot;start.sh&quot; file readable and executable for
   anyone and in addition writable by the owner.</p>
 </body>

http://git-wip-us.apache.org/repos/asf/ant/blob/7eeb33d5/manual/Tasks/signjar.html
----------------------------------------------------------------------
diff --git a/manual/Tasks/signjar.html b/manual/Tasks/signjar.html
index a422b9f..e414db9 100644
--- a/manual/Tasks/signjar.html
+++ b/manual/Tasks/signjar.html
@@ -223,15 +223,15 @@ block</td>
 
 <h3>Examples</h3>
 <p>For instructions on generating a code signing certificate, see the <a target="_blank" href="http://docs.oracle.com/javase/7/docs/technotes/tools/windows/keytool.html">keytool documentation</a> and/or instructions from your certificate authority.</p>
-  <blockquote><pre>
+<pre>
 &lt;signjar jar=&quot;${dist}/lib/ant.jar&quot;
 alias=&quot;apache-group&quot; storepass=&quot;secret&quot;/&gt;
-</pre></blockquote>
+</pre>
 <p>
   signs the ant.jar with alias &quot;apache-group&quot; accessing the
   keystore and private key via &quot;secret&quot; password.
 </p>
-  <blockquote><pre>
+<pre>
 &lt;signjar destDir="signed"
     alias="testonly" keystore="testkeystore"
     storepass="apacheant"
@@ -241,14 +241,13 @@ alias=&quot;apache-group&quot; storepass=&quot;secret&quot;/&gt;
   &lt;/path&gt;
   &lt;flattenmapper /&gt;
 &lt;/signjar&gt;
-</pre></blockquote>
+</pre>
 <p>
 Sign all JAR files matching the dist/**/*.jar pattern, copying them to the
 directory "signed" afterwards. The flatten mapper means that they will
 all be copied to this directory, not to subdirectories.
-
 </p>
-  <blockquote><pre>
+<pre>
 &lt;signjar
     alias="testonly" keystore="testkeystore"
     storepass="apacheant"
@@ -258,12 +257,12 @@ all be copied to this directory, not to subdirectories.
     &lt;fileset dir="dist" includes="**/*.jar" /&gt;
   &lt;/path&gt;
 &lt;/signjar&gt;
-</pre></blockquote>
+</pre>
 <p>
 Sign all the JAR files in dist/**/*.jar <i>in-situ</i>. Lazy signing is used,
 so the files will only be signed if they are not already signed.
 </p>
-  <blockquote><pre>
+<pre>
 &lt;signjar
     alias="testonly" keystore="testkeystore"
     storepass="apacheant"
@@ -273,7 +272,7 @@ so the files will only be signed if they are not already signed.
     &lt;fileset dir="dist" includes="**/*.jar" /&gt;
   &lt;/path&gt;
 &lt;/signjar&gt;
-</pre></blockquote>
+</pre>
 <p>
 Sign all the JAR files in dist/**/*.jar using the digest algorithm SHA1 and the
 signature algorithm MD5withRSA. This is especially useful when you want to use

http://git-wip-us.apache.org/repos/asf/ant/blob/7eeb33d5/manual/Tasks/sound.html
----------------------------------------------------------------------
diff --git a/manual/Tasks/sound.html b/manual/Tasks/sound.html
index f0de67d..7f8f341 100644
--- a/manual/Tasks/sound.html
+++ b/manual/Tasks/sound.html
@@ -84,7 +84,7 @@ will be logged.
 </table>
 
 <h3>Examples</h3>
-<blockquote>
+
 <pre>
 &lt;target name=&quot;fun&quot; if=&quot;fun&quot; unless=&quot;fun.done&quot;&gt;
   &lt;sound&gt;
@@ -94,7 +94,6 @@ will be logged.
   &lt;property name=&quot;fun.done&quot; value=&quot;true&quot;/&gt;
 &lt;/target&gt;
 </pre>
-</blockquote>
 plays the <code>bell.wav</code> sound-file if the build succeeded, or
 the <code>ohno.wav</code> sound-file if the build failed, three times,
 if the <code>fun</code> property is set to <code>true</code>.
@@ -103,7 +102,6 @@ is a dependency of an &quot;initialization&quot; target that other
 targets depend on, the
 <code>fun.done</code> property prevents the target from being executed
 more than once.
-<blockquote>
 <pre>
 &lt;target name=&quot;fun&quot; if=&quot;fun&quot; unless=&quot;fun.done&quot;&gt;
   &lt;sound&gt;
@@ -113,7 +111,6 @@ more than once.
   &lt;property name=&quot;fun.done&quot; value=&quot;true&quot;/&gt;
 &lt;/target&gt;
 </pre>
-</blockquote>
 randomly selects a sound-file to play when the build succeeds or fails.
 
 </body>

http://git-wip-us.apache.org/repos/asf/ant/blob/7eeb33d5/manual/Tasks/splash.html
----------------------------------------------------------------------
diff --git a/manual/Tasks/splash.html b/manual/Tasks/splash.html
index cf8bcad..e8eed69 100644
--- a/manual/Tasks/splash.html
+++ b/manual/Tasks/splash.html
@@ -105,7 +105,6 @@ the build exactly what is going on.
     <td valign="top">User to authenticate to the proxy as.</td>
     <td valign="top" align="center">No</td>
     <td valign="top" align="center">None</td>
-
   </tr>
   <tr>
     <td valign="top">password</td>
@@ -113,23 +112,20 @@ the build exactly what is going on.
     <td valign="top" align="center">No</td>
     <td valign="top" align="center">None</td>
   </tr>
-
 </table>
 <h3>Examples</h3>
-<blockquote><pre>
-&lt;splash/&gt;
-</pre></blockquote>
+<pre>&lt;splash/&gt;</pre>
 <p>Splash <code>images/ant_logo_large.gif</code> from the classpath.</p>
-<blockquote><pre>
+<pre>
 &lt;splash imageurl=&quot;http://jakarta.apache.org/images/jakarta-logo.gif&quot;
            useproxy=&quot;true&quot;
            showduration=&quot;5000&quot;/&gt;
 
-</pre></blockquote>
+</pre>
 <p>Splashes the jakarta logo, for an initial period of 5 seconds.</p>
 
 <p>Splash with controlled progress and nondefault text</p>
-<blockquote><pre>
+<pre>
         &lt;target name="test_new_features"&gt;
                 &lt;echo&gt;New features&lt;/echo&gt;
                 &lt;splash progressRegExp="Progress: (.*)%" showduration="0" displayText="Test text"/&gt;
@@ -145,7 +141,7 @@ the build exactly what is going on.
                 &lt;echo&gt;Progress: 100%&lt;/echo&gt;
                 &lt;sleep seconds="3"/&gt;
         &lt;/target&gt;
-</pre></blockquote>
+</pre>
 
 </body>
 </html>

http://git-wip-us.apache.org/repos/asf/ant/blob/7eeb33d5/manual/Tasks/sql.html
----------------------------------------------------------------------
diff --git a/manual/Tasks/sql.html b/manual/Tasks/sql.html
index 4e52ae4..58d673f 100644
--- a/manual/Tasks/sql.html
+++ b/manual/Tasks/sql.html
@@ -352,19 +352,19 @@ href="../using.html#path">PATH like structure</a> and can also be set via a nest
 </table>
 
 <h3>Examples</h3>
-<blockquote><pre>&lt;sql
+<pre>&lt;sql
     driver=&quot;org.database.jdbcDriver&quot;
     url=&quot;jdbc:database-url&quot;
     userid=&quot;sa&quot;
     password=&quot;pass&quot;
     src=&quot;data.sql&quot;/&gt;
-</pre></blockquote>
+</pre>
 
 <p>Connects to the database given in <i>url</i> as the sa user using the
 org.database.jdbcDriver and executes the SQL statements contained within
 the file data.sql</p>
 
-<blockquote><pre>&lt;sql
+<pre>&lt;sql
     driver=&quot;org.database.jdbcDriver&quot;
     url=&quot;jdbc:database-url&quot;
     userid=&quot;sa&quot;
@@ -372,14 +372,14 @@ the file data.sql</p>
     src=&quot;data.sql&quot;&gt;
   &lt;connectionProperty name=&quot;internal_logon&quot; value=&quot;SYSDBA&quot;&gt;
 &lt;/sql&gt;
-</pre></blockquote>
+</pre>
 
 <p>Connects to the database given in <i>url</i> as the sa user using
 the org.database.jdbcDriver and executes the SQL statements contained
 within the file data.sql.  Also sets the
 property <i>internal_logon</i> to the value <i>SYSDBA</i>.</p>
 
-<blockquote><pre>&lt;sql
+<pre>&lt;sql
     driver=&quot;org.database.jdbcDriver&quot;
     url=&quot;jdbc:database-url&quot;
     userid=&quot;sa&quot;
@@ -390,7 +390,7 @@ values(1,2,3,4);
 
 truncate table some_other_table;
 &lt;/sql&gt;
-</pre></blockquote>
+</pre>
 
 <p>Connects to the database given in <i>url</i> as the sa
  user using the org.database.jdbcDriver and executes the two SQL statements
@@ -402,7 +402,7 @@ truncate table some_other_table;
 need to escape <code>&lt;</code>, <code>&gt;</code> <code>&amp;</code>
 or other special characters. For example:</p>
 
-<blockquote><pre>&lt;sql
+<pre>&lt;sql
     driver=&quot;org.database.jdbcDriver&quot;
     url=&quot;jdbc:database-url&quot;
     userid=&quot;sa&quot;
@@ -411,12 +411,12 @@ or other special characters. For example:</p>
 update some_table set column1 = column1 + 1 where column2 &lt; 42;
 
 ]]&gt;&lt;/sql&gt;
-</pre></blockquote>
+</pre>
 
 The following command turns property expansion in nested text on (it is off purely for backwards
 compatibility), then creates a new user in the HSQLDB database using Ant properties.
 
-<blockquote><pre>&lt;sql
+<pre>&lt;sql
     driver="org.hsqldb.jdbcDriver";
     url="jdbc:hsqldb:file:${database.dir}"
     userid="sa"
@@ -426,14 +426,14 @@ compatibility), then creates a new user in the HSQLDB database using Ant propert
     CREATE USER ${newuser} PASSWORD ${newpassword}
   &lt;/transaction&gt;
 &lt;/sql&gt;
-</pre></blockquote>
+</pre>
 
 <p>The following connects to the database given in url as the sa user using
 the org.database.jdbcDriver and executes the SQL statements contained within
 the files data1.sql, data2.sql and data3.sql and then executes the truncate
 operation on <i>some_other_table</i>.</p>
 
-<blockquote><pre>&lt;sql
+<pre>&lt;sql
     driver=&quot;org.database.jdbcDriver&quot;
     url=&quot;jdbc:database-url&quot;
     userid=&quot;sa&quot;
@@ -445,14 +445,14 @@ operation on <i>some_other_table</i>.</p>
     truncate table some_other_table;
   &lt;/transaction&gt;
 &lt;/sql&gt;
-</pre></blockquote>
+</pre>
 
 <p>The following example does the same as (and may execute additional
 SQL files if there are more files matching the pattern
 <code>data*.sql</code>) but doesn't guarantee that data1.sql will be
 run before <code>data2.sql</code>.</p>
 
-<blockquote><pre>&lt;sql
+<pre>&lt;sql
     driver=&quot;org.database.jdbcDriver&quot;
     url=&quot;jdbc:database-url&quot;
     userid=&quot;sa&quot;
@@ -466,14 +466,14 @@ run before <code>data2.sql</code>.</p>
     truncate table some_other_table;
   &lt;/transaction&gt;
 &lt;/sql&gt;
-</pre></blockquote>
+</pre>
 
 <p>The following connects to the database given in url as the sa user using the
 org.database.jdbcDriver and executes the SQL statements contained within the
 file data.sql, with output piped to outputfile.txt, searching /some/jdbc.jar
 as well as the system classpath for the driver class.</p>
 
-<blockquote><pre>&lt;sql
+<pre>&lt;sql
     driver=&quot;org.database.jdbcDriver&quot;
     url=&quot;jdbc:database-url&quot;
     userid=&quot;sa&quot;
@@ -485,12 +485,12 @@ as well as the system classpath for the driver class.</p>
 	&lt;pathelement location=&quot;/some/jdbc.jar&quot;/&gt;
 &lt;/classpath&gt;
 &lt;/sql&gt;
-</pre></blockquote>
+</pre>
 
 <p>The following will only execute if the RDBMS is &quot;oracle&quot; and the version
 starts with &quot;8.1.&quot;</p>
 
-<blockquote><pre>&lt;sql
+<pre>&lt;sql
     driver=&quot;org.database.jdbcDriver&quot;
     url=&quot;jdbc:database-url&quot;
     userid=&quot;sa&quot;
@@ -504,7 +504,7 @@ values(1,2,3,4);
 
 truncate table some_other_table;
 &lt;/sql&gt;
-</pre></blockquote>
+</pre>
 
 </body>
 </html>

http://git-wip-us.apache.org/repos/asf/ant/blob/7eeb33d5/manual/Tasks/sync.html
----------------------------------------------------------------------
diff --git a/manual/Tasks/sync.html b/manual/Tasks/sync.html
index e315cec..a598175 100644
--- a/manual/Tasks/sync.html
+++ b/manual/Tasks/sync.html
@@ -137,23 +137,23 @@ defaults to false.</p>
 
 <h3>Examples</h3>
 
-<blockquote><pre>
+<pre>
 &lt;sync todir=&quot;site&quot;&gt;
   &lt;fileset dir=&quot;generated-site&quot;/&gt;
 &lt;/sync&gt;
-</pre></blockquote>
+</pre>
 <p>overwrites all files in <em>site</em> with newer files from
 <em>generated-site</em>, deletes files from <em>site</em> that are not
 present in <em>generated-site</em>.</p>
 
-<blockquote><pre>
+<pre>
 &lt;sync todir=&quot;site&quot;&gt;
   &lt;fileset dir=&quot;generated-site&quot;/&gt;
   &lt;preserveintarget&gt;
     &lt;include name=&quot;**/CVS/**&quot;/&gt;
   &lt;/preserveintarget&gt;
 &lt;/sync&gt;
-</pre></blockquote>
+</pre>
 <p>overwrites all files in <em>site</em> with newer files from
 <em>generated-site</em>, deletes files from <em>site</em> that are not
 present in <em>generated-site</em> but keeps all files in any

http://git-wip-us.apache.org/repos/asf/ant/blob/7eeb33d5/manual/Tasks/telnet.html
----------------------------------------------------------------------
diff --git a/manual/Tasks/telnet.html b/manual/Tasks/telnet.html
index af507fb..c2c9dc9 100644
--- a/manual/Tasks/telnet.html
+++ b/manual/Tasks/telnet.html
@@ -101,16 +101,16 @@ A simple example of connecting to a server and running a command.  This assumes
  a prompt of &quot;ogin:&quot; for the userid, and a prompt of &quot;assword:&quot;
  for the password.
 
-<blockquote><pre>
+<pre>
 &lt;telnet userid=&quot;bob&quot; password=&quot;badpass&quot; server=&quot;localhost&quot;&gt;
    &lt;read&gt;/home/bob&lt;/read&gt;
    &lt;write&gt;ls&lt;/write&gt;
    &lt;read string=&quot;/home/bob&quot;/&gt;
 &lt;/telnet&gt;
-</pre></blockquote>
+</pre>
 
 This task can be rewritten as:
-<blockquote><pre>
+<pre>
 &lt;telnet server=&quot;localhost&quot;&gt;
    &lt;read&gt;ogin:&lt;/read&gt;
    &lt;write&gt;bob&lt;/write&gt;
@@ -120,28 +120,28 @@ This task can be rewritten as:
    &lt;write&gt;ls&lt;/write&gt;
    &lt;read&gt;/home/bob&lt;/read&gt;
 &lt;/telnet&gt;
-</pre></blockquote>
+</pre>
 
 A timeout can be specified at the <code>&lt;telnet&gt;</code> level or at the <code>&lt;read&gt;</code> level.
 This will connect, issue a sleep command that is suppressed from displaying and wait
 10 seconds before quitting.
-<blockquote><pre>
+<pre>
 &lt;telnet userid=&quot;bob&quot; password=&quot;badpass&quot; server=&quot;localhost&quot; timeout=&quot;20&quot;&gt;
    &lt;read&gt;/home/bob&lt;/read&gt;
    &lt;write echo=&quot;false&quot;&gt;sleep 15&lt;/write&gt;
    &lt;read timeout=&quot;10&quot;&gt;/home/bob&lt;/read&gt;
 &lt;/telnet&gt;
-</pre></blockquote>
+</pre>
 
 The task can be used with other ports as well:
-<blockquote><pre>
+<pre>
 &lt;telnet port=&quot;80&quot; server=&quot;localhost&quot; timeout=&quot;20&quot;&gt;
    &lt;read/&gt;
    &lt;write&gt;GET / http/0.9&lt;/write&gt;
    &lt;write/&gt;
    &lt;read timeout=&quot;10&quot;&gt;&amp;lt;/HTML&amp;gt;&lt;/read&gt;
 &lt;/telnet&gt;
-</pre></blockquote>
+</pre>
 <p>
 To use this task against the WinNT telnet service, you need to configure the service to use
 classic authentication rather than NTLM negotiated authentication.

http://git-wip-us.apache.org/repos/asf/ant/blob/7eeb33d5/manual/Tasks/unpack.html
----------------------------------------------------------------------
diff --git a/manual/Tasks/unpack.html b/manual/Tasks/unpack.html
index 6537d31..ac278d2 100644
--- a/manual/Tasks/unpack.html
+++ b/manual/Tasks/unpack.html
@@ -66,32 +66,22 @@ resource collection</h4>
 <p>The specified resource will be used as src.</p>
 
 <h3>Examples</h3>
-<blockquote><pre>
-&lt;gunzip src=&quot;test.tar.gz&quot;/&gt;
-</pre></blockquote>
+<pre>&lt;gunzip src=&quot;test.tar.gz&quot;/&gt;</pre>
 <p>expands <i>test.tar.gz</i> to <i>test.tar</i></p>
-<blockquote><pre>
-&lt;bunzip2 src=&quot;test.tar.bz2&quot;/&gt;
-</pre></blockquote>
+<pre>&lt;bunzip2 src=&quot;test.tar.bz2&quot;/&gt;</pre>
 <p>expands <i>test.tar.bz2</i> to <i>test.tar</i></p>
-<blockquote><pre>
-&lt;unxz src=&quot;test.tar.xz&quot;/&gt;
-</pre></blockquote>
+<pre>&lt;unxz src=&quot;test.tar.xz&quot;/&gt;</pre>
 <p>expands <i>test.tar.xz</i> to <i>test.tar</i></p>
-<blockquote><pre>
-&lt;gunzip src=&quot;test.tar.gz&quot; dest=&quot;test2.tar&quot;/&gt;
-</pre></blockquote>
+<pre>&lt;gunzip src=&quot;test.tar.gz&quot; dest=&quot;test2.tar&quot;/&gt;</pre>
 <p>expands <i>test.tar.gz</i> to <i>test2.tar</i></p>
-<blockquote><pre>
-&lt;gunzip src=&quot;test.tar.gz&quot; dest=&quot;subdir&quot;/&gt;
-</pre></blockquote>
+<pre>&lt;gunzip src=&quot;test.tar.gz&quot; dest=&quot;subdir&quot;/&gt;</pre>
 <p>expands <i>test.tar.gz</i> to <i>subdir/test.tar</i> (assuming
 subdir is a directory).</p>
-<blockquote><pre>
+<pre>
 &lt;gunzip dest=&quot;.&quot;&gt;
   &lt;url url="http://example.org/archive.tar.gz"/&gt;
 &lt;/gunzip&gt;
-</pre></blockquote>
+</pre>
 <p>downloads <i>http://example.org/archive.tar.gz</i> and expands it
 to <i>archive.tar</i> in the project's basedir on the fly.</p>
 
@@ -100,9 +90,7 @@ to <i>archive.tar</i> in the project's basedir on the fly.</p>
 <pre>
 &lt;gunzip src="some-archive.gz" dest="some-dest-dir"/&gt;
 </pre>
-
 is identical to
-
 <pre>
 &lt;copy todir="some-dest-dir"&gt;
   &lt;gzipresource&gt;

http://git-wip-us.apache.org/repos/asf/ant/blob/7eeb33d5/manual/Tasks/verifyjar.html
----------------------------------------------------------------------
diff --git a/manual/Tasks/verifyjar.html b/manual/Tasks/verifyjar.html
index 58a751b..8908b31 100644
--- a/manual/Tasks/verifyjar.html
+++ b/manual/Tasks/verifyjar.html
@@ -126,12 +126,11 @@ supported
   </tr>
  </table>
 
-
 <h3>Examples</h3>
-  <blockquote><pre>
+<pre>
 &lt;verifyjar jar=&quot;${dist}/lib/ant.jar&quot;
 alias=&quot;apache-group&quot; storepass=&quot;secret&quot;/&gt;
-</pre></blockquote>
+</pre>
 <p>
   verifies the ant.jar with alias &quot;apache-group&quot; accessing the
   keystore and private key via &quot;secret&quot; password.

http://git-wip-us.apache.org/repos/asf/ant/blob/7eeb33d5/manual/Tasks/vss.html
----------------------------------------------------------------------
diff --git a/manual/Tasks/vss.html b/manual/Tasks/vss.html
index a11f8bb..e02b76d 100644
--- a/manual/Tasks/vss.html
+++ b/manual/Tasks/vss.html
@@ -198,7 +198,7 @@ label only one will be used in the order version, date, label.</p>
 </table>
 <p>Note that only one of version, date or label should be specified</p>
 <h3>Examples</h3>
-<blockquote>
+
 <pre>
 &lt;vssget localPath=&quot;C:\mysrc\myproject&quot;
         recursive=&quot;true&quot;
@@ -207,7 +207,7 @@ label only one will be used in the order version, date, label.</p>
         vsspath=&quot;$/source/aProject&quot;
         writable=&quot;true&quot;/&gt;
 </pre>
-</blockquote>
+
 <p>Does a get on the VSS-Project <i>$/source/myproject</i> using the username
 <i>me</i> and the password <i>mypassword</i>. It will recursively get the files
 which are labeled <i>Release1</i> and write them to the local directory
@@ -282,24 +282,24 @@ project.</p>
   </tr>
 </table>
 <h3>Examples</h3>
-<blockquote>
+
 <pre>
 &lt;vsslabel vsspath=&quot;$/source/aProject&quot;
           login=&quot;me,mypassword&quot;
           label=&quot;Release1&quot;/&gt;
 </pre>
-</blockquote>
+
 <p>Labels the current version of the VSS project <i>$/source/aProject</i> with
 the label <i>Release1</i> using the username <i>me</i> and the password
 <i>mypassword</i>.
 </p>
-<blockquote>
+
 <pre>
 &lt;vsslabel vsspath=&quot;$/source/aProject/myfile.txt&quot;
           version=&quot;4&quot;
           label=&quot;1.03.004&quot;/&gt;
 </pre>
-</blockquote>
+
 <p>Labels version 4 of the VSS file <i>$/source/aProject/myfile.txt</i> with the
 label <i>1.03.004</i>. If this version already has a label, the operation (and
 the build) will fail.
@@ -414,25 +414,25 @@ Task to perform HISTORY commands to Microsoft Visual SourceSafe.
 
 
 <h3>Examples</h3>
-<blockquote>
+
   <pre>
 &lt;vsshistory vsspath=&quot;$/myProject&quot; recursive=&quot;true&quot;
             fromLabel=&quot;Release1&quot;
             toLabel=&quot;Release2&quot;/&gt;
 </pre>
-</blockquote>
+
 <p>Shows all changes between &quot;Release1&quot; and &quot;Release2&quot;.</p>
 
-<blockquote>
+
   <pre>
 &lt;vsshistory vsspath=&quot;$/myProject&quot; recursive=&quot;true&quot;
             fromDate=&quot;01.01.2001&quot;
             toDate=&quot;31.03.2001&quot;/&gt;
 </pre>
-</blockquote>
+
 <p>Shows all changes between January 1st 2001 and March 31st 2001 (in Germany, date must be specified according to your locale).</p>
 
-<blockquote>
+
   <pre>
 &lt;tstamp&gt;
   &lt;format property=&quot;to.tstamp&quot; pattern=&quot;M-d-yy;h:mma&quot;/&gt;
@@ -443,7 +443,7 @@ Task to perform HISTORY commands to Microsoft Visual SourceSafe.
             dateFormat=&quot;M-d-yy;h:mma&quot;
             toDate=&quot;${to.tstamp}&quot;/&gt;
 </pre>
-</blockquote>
+
 <p>Shows all changes in the 14 days before today.</p>
 <hr>
 
@@ -517,13 +517,13 @@ Task to perform CHECKIN commands to Microsoft Visual SourceSafe.
 </table>
 
 <h3>Examples</h3>
-<blockquote>
+
 <pre>
 &lt;vsscheckin vsspath=&quot;$/test/test*&quot;
             localpath=&quot;D:\build\&quot;
             comment=&quot;Modified by automatic build&quot;/&gt;
 </pre>
-</blockquote>
+
 <p>Checks in the file(s) named <i>test*</i> in the project <i>$/test</i> using
 the local directory <i>D:\build</i>.</p>
 <hr>
@@ -621,14 +621,14 @@ label only one will be used in the order version, date, label.</p>
 </table>
 
 <h3>Examples</h3>
-<blockquote>
+
 <pre>
 &lt;vsscheckout vsspath=&quot;$/test&quot;
              localpath=&quot;D:\build&quot;
              recursive=&quot;true&quot;
              login=&quot;me,mypass&quot;/&gt;
 </pre>
-</blockquote>
+
 <p>Does a recursive checkout of the project <i>$/test</i> to the directory D:\build.
 </p>
 <hr>
@@ -697,12 +697,12 @@ Task to perform ADD commands to Microsoft Visual SourceSafe.
 </table>
 
 <h3>Examples</h3>
-<blockquote>
+
 <pre>
 &lt;vssadd localpath=&quot;D:\build\build.00012.zip&quot;
             comment=&quot;Added by automatic build&quot;/&gt;
 </pre>
-</blockquote>
+
 <p>Add the file named build.00012.zip into the project current working
 directory (see vsscp).</p>
 <hr>
@@ -753,11 +753,9 @@ directory (see vsscp).</p>
 </table>
 
 <h3>Examples</h3>
-<blockquote>
-<pre>
-&lt;vsscp vsspath=&quot;$/Projects/ant&quot;/&gt;
-</pre>
-</blockquote>
+
+<pre>&lt;vsscp vsspath=&quot;$/Projects/ant&quot;/&gt;</pre>
+
 <p>Sets the current VSS project to <i>$/Projects/ant</i>.</p>
 <hr>
 
@@ -811,11 +809,9 @@ directory (see vsscp).</p>
   </tr>
 </table>
 <h3>Examples</h3>
-<blockquote>
-<pre>
-&lt;vsscreate vsspath=&quot;$/existingProject/newProject&quot;/&gt;
-</pre>
-</blockquote>
+
+<pre>&lt;vsscreate vsspath=&quot;$/existingProject/newProject&quot;/&gt;</pre>
+
 <p>Creates the VSS-Project <i>$/existingProject/newProject</i>.</p>
 
 </body>

http://git-wip-us.apache.org/repos/asf/ant/blob/7eeb33d5/manual/Tasks/waitfor.html
----------------------------------------------------------------------
diff --git a/manual/Tasks/waitfor.html b/manual/Tasks/waitfor.html
index 30dc465..890ede6 100644
--- a/manual/Tasks/waitfor.html
+++ b/manual/Tasks/waitfor.html
@@ -102,27 +102,27 @@ true within the specified time.</p>
 <a href="conditions.html">here</a> for the full list.</p>
 
 <h3>Examples</h3>
-<blockquote><pre>
+<pre>
 &lt;waitfor maxwait="30" maxwaitunit="second"&gt;
         &lt;available file="errors.log"/&gt;
 &lt;/waitfor&gt;
-</pre></blockquote>
+</pre>
 <p>waits up to 30 seconds for a file called errors.log to appear.</p>
-<blockquote><pre>
+<pre>
 &lt;waitfor maxwait="3" maxwaitunit="minute" checkevery="500"&gt;
         &lt;http url="http://localhost/myapp/index.html"/&gt;
 &lt;/waitfor&gt;
-</pre></blockquote>
+</pre>
 <p>waits up to 3 minutes (and checks every 500 milliseconds) for a web server on localhost
   to serve up the specified URL.</p>
-<blockquote><pre>
+<pre>
 &lt;waitfor maxwait="10" maxwaitunit="second"&gt;
         &lt;and&gt;
             &lt;socket server="dbserver" port="1521"/&gt;
             &lt;http url="http://webserver/mypage.html"/&gt;
         &lt;/and&gt;
 &lt;/waitfor&gt;
-</pre></blockquote>
+</pre>
 <p>waits up to 10 seconds for a server on the dbserver machine to begin listening
   on port 1521 and for the http://webserver/mypage.html web page
   to become available.</p>

http://git-wip-us.apache.org/repos/asf/ant/blob/7eeb33d5/manual/Tasks/whichresource.html
----------------------------------------------------------------------
diff --git a/manual/Tasks/whichresource.html b/manual/Tasks/whichresource.html
index 72eb2ee..27ee95e 100644
--- a/manual/Tasks/whichresource.html
+++ b/manual/Tasks/whichresource.html
@@ -31,9 +31,9 @@
       The named property is set if the item can be found.
       For example:
     </p>
-<blockquote><pre>
+<pre>
   &lt;whichresource resource="/log4j.properties" property="log4j.url" &gt;
-</pre></blockquote>
+</pre>
     <h3>Parameters</h3>
     <table>
       <tr>
@@ -91,7 +91,7 @@
     <p>
       The following shows using a classpath reference.
     </p>
-<blockquote><pre>
+<pre>
   &lt;path id="bsf.classpath"&gt;
     &lt;fileset dir="${user.home}/lang/bsf" includes="*.jar"/&gt;
   &lt;/path&gt;
@@ -99,11 +99,11 @@
                  class="org.apache.bsf.BSFManager"
                  classpathref="bsf.classpath"/&gt;
   &lt;echo&gt;${bsf.class.location}&lt;/echo&gt;
-</pre></blockquote>
+</pre>
     <p>
       The following shows using a nested classpath.
     </p>
-<blockquote><pre>
+<pre>
   &lt;whichresource
     property="ant-contrib.antlib.location"
     resource="net/sf/antcontrib/antlib.xml"&gt;
@@ -112,6 +112,6 @@
     &lt;/classpath&gt;
   &lt;/whichresource&gt;
   &lt;echo&gt;${ant-contrib.antlib.location}&lt;/echo&gt;
-</pre></blockquote>
+</pre>
 </body>
 </html>

http://git-wip-us.apache.org/repos/asf/ant/blob/7eeb33d5/manual/Types/antlib.html
----------------------------------------------------------------------
diff --git a/manual/Types/antlib.html b/manual/Types/antlib.html
index 0e738c0..bace8de 100644
--- a/manual/Types/antlib.html
+++ b/manual/Types/antlib.html
@@ -25,7 +25,6 @@
   <body>
     <h2 id="antlib">Antlib</h2>
 
-
     <h3>Description</h3>
     <p>
       An antlib file is an xml file with a root element of "antlib".
@@ -53,8 +52,7 @@
       A group of tasks and types may be defined together in an antlib
       file. For example the file <i>sample.xml</i> contains the following:
     </p>
-    <blockquote>
-      <pre>
+    <pre>
 &lt;?xml version="1.0"?&gt;
 &lt;antlib&gt;
    &lt;typedef name="if" classname="org.acme.ant.If"/&gt;
@@ -70,17 +68,14 @@
       &lt;/sequential&gt;
    &lt;/macrodef&gt;
 &lt;/antlib&gt;
-      </pre>
-    </blockquote>
+    </pre>
     <p>
       It defines two types or tasks, <i>if</i> and <i>scriptpathmapper</i>.
       This antlib file may be used in a build script as follows:
     </p>
-    <blockquote>
-      <pre>
+    <pre>
 &lt;typedef file="sample.xml"/&gt;
-      </pre>
-    </blockquote>
+    </pre>
     <p>
       The other attributes of <code>&lt;typedef&gt;</code> may be used as well.
       For example, assuming that the <i>sample.xml</i> is in a jar
@@ -88,25 +83,20 @@
       following build fragment will define the <i>if</i> and <i>scriptpathmapper</i>
       tasks/types and place them in the namespace uri <i>samples:/acme.org</i>.
     </p>
-    <blockquote>
-      <pre>
+    <pre>
 &lt;typedef resource="org/acme/ant/sample.xml"
          uri="samples:/acme.org"/&gt;
-      </pre>
-    </blockquote>
+    </pre>
     <p>
       The definitions may then be used as follows:
     </p>
-    <blockquote>
-      <pre>
+    <pre>
 &lt;sample:if valuetrue="${props}" xmlns:sample="samples:/acme.org"&gt;
    &lt;sample:scriptpathmapper language="beanshell"&gt;
       some bean shell
    &lt;/sample:scriptpathmapper&gt;
 &lt;/sample:if&gt;
-      </pre>
-    </blockquote>
-
+    </pre>
 
     <h3 id="antlibnamespace">Antlib namespace</h3>
     <p>
@@ -125,8 +115,7 @@
       defined, the following build file will automatically load the antcontrib
       definitions at location <i>HERE</i>:
     </p>
-    <blockquote>
-      <pre>
+    <pre>
 &lt;project default="deletetest" xmlns:antcontrib="antlib:net.sf.antcontrib"&gt;
    &lt;macrodef name="showdir"&gt;
       &lt;attribute name="dir"/&gt;
@@ -148,22 +137,18 @@
       &lt;showdir dir="a"/&gt;
    &lt;/target&gt;
 &lt;/project&gt;
-      </pre>
-    </blockquote>
+    </pre>
     <p>
       The requirement that the resource is in the default classpath
       may be removed in future versions of Ant.
     </p>
-
-
 	<h3 id="loadFromInside">Load antlib from inside of the buildfile</h3>
 	<p>
 	  If you want to separate the antlib from your local Ant installation, e.g. because you
 	  want to hold that jar in your projects SCM system, you have to specify a classpath, so
 	  that Ant could find that jar. The best solution is loading the antlib with <tt>&lt;taskdef&gt;</tt>.
 	</p>
-    <blockquote>
-      <pre>
+    <pre>
 &lt;project xmlns:<font color="green">antcontrib</font>="<font color="red">antlib:net.sf.antcontrib</font>"&gt;
    &lt;taskdef uri="<font color="red">antlib:net.sf.antcontrib</font>"
             resource="net/sf/antcontrib/antlib.xml"
@@ -178,9 +163,7 @@
       &lt;/antcontrib:for&gt;
    &lt;/target&gt;
 &lt;/project&gt;
-      </pre>
-    </blockquote>
-
+    </pre>
     <h3 id="currentnamespace">Current namespace</h3>
     <p>
       Definitions defined in antlibs may be used in antlibs. However
@@ -192,8 +175,7 @@
       type <code>&lt;isallowed&gt;</code> and a macro
       <code>&lt;ifallowed&gt;</code> that makes use of the task and type:
     </p>
-    <blockquote>
-      <pre>
+    <pre>
 &lt;antlib xmlns:current="ant:current"&gt;
    &lt;taskdef name="if" classname="org.acme.ant.If"/&gt;
    &lt;typedef name="isallowed" classname="org.acme.ant.Isallowed"/&gt;
@@ -210,10 +192,7 @@
       &lt;/sequential&gt;
    &lt;/macrodef&gt;
 &lt;/antlib&gt;
-      </pre>
-    </blockquote>
-
-
+    </pre>
     <h3>Other examples and comments</h3>
     <p>
       Antlibs may make use of other antlibs.
@@ -226,8 +205,7 @@
       following antlib may be used to define defaults for various
       tasks:
     </p>
-    <blockquote>
-      <pre>
+    <pre>
 &lt;antlib xmlns:antcontrib="antlib:net.sf.antcontrib"&gt;
    &lt;presetdef name="javac"&gt;
       &lt;javac deprecation="${deprecation}"
@@ -240,21 +218,18 @@
       &lt;antcontrib:shellscript shell="bash"/&gt;
    &lt;/presetdef&gt;
 &lt;/antlib&gt;
-      </pre>
-    </blockquote>
+    </pre>
     <p>
       This may be used as follows:
     </p>
-    <blockquote>
-      <pre>
+    <pre>
 &lt;project xmlns:local="localpresets"&gt;
    &lt;typedef file="localpresets.xml" uri="localpresets"/&gt;
    &lt;local:shellscript&gt;
       echo "hello world"
    &lt;/local:shellscript&gt;
 &lt;/project&gt;
-      </pre>
-    </blockquote>
+    </pre>
 
 </body>
 </html>

http://git-wip-us.apache.org/repos/asf/ant/blob/7eeb33d5/manual/Types/classfileset.html
----------------------------------------------------------------------
diff --git a/manual/Types/classfileset.html b/manual/Types/classfileset.html
index 5e7642c..5f25108 100644
--- a/manual/Types/classfileset.html
+++ b/manual/Types/classfileset.html
@@ -85,28 +85,28 @@ relative location of the classfile in the fileset. So, the file
 <code>org.apache.tools.ant.Project</code>.</p>
 
 <h4>Examples</h4>
-<blockquote><pre>
+<pre>
 &lt;classfileset id=&quot;reqdClasses" dir=&quot;${classes.dir}&quot;&gt;
   &lt;root classname=&quot;org.apache.tools.ant.Project&quot;/&gt;
 &lt;/classfileset&gt;
-</pre></blockquote>
+</pre>
 
 <p>This example creates a fileset containing all the class files upon which the
 <code>org.apache.tools.ant.Project</code> class depends. This fileset could
 then be used to create a jar.
 </p>
 
-<blockquote><pre>
+<pre>
 &lt;jar destfile=&quot;minimal.jar&quot;&gt;
   &lt;fileset refid=&quot;reqdClasses&quot;/&gt;
 &lt;/jar&gt;
-</pre></blockquote>
+</pre>
 
-<blockquote><pre>
+<pre>
 &lt;classfileset id=&quot;reqdClasses&quot; dir=&quot;${classes.dir}&quot;&gt;
   &lt;rootfileset dir=&quot;${classes.dir}&quot; includes=&quot;org/apache/tools/ant/Project*.class&quot;/&gt;
 &lt;/classfileset&gt;
-</pre></blockquote>
+</pre>
 
 <p>This example constructs the classfileset using all the class with names starting with Project
 in the org.apache.tools.ant package</p>

http://git-wip-us.apache.org/repos/asf/ant/blob/7eeb33d5/manual/Types/custom-programming.html
----------------------------------------------------------------------
diff --git a/manual/Types/custom-programming.html b/manual/Types/custom-programming.html
index 3010b83..5f851e4 100644
--- a/manual/Types/custom-programming.html
+++ b/manual/Types/custom-programming.html
@@ -64,8 +64,7 @@
       For example a custom condition that returns true if a
       string is all upper case could be written as:
     </p>
-    <blockquote>
-      <pre>
+    <pre>
 package com.mydomain;
 
 import org.apache.tools.ant.BuildException;
@@ -87,31 +86,25 @@ public class AllUpperCaseCondition implements Condition {
         return value.toUpperCase().equals(value);
    }
 }
-      </pre>
-    </blockquote>
-
+    </pre>
     <p>
         Adding the condition to the system is achieved as follows:
     </p>
-    <blockquote>
-      <pre>
+    <pre>
 &lt;typedef
     name="alluppercase"
     classname="com.mydomain.AllUpperCaseCondition"
     classpath="${mydomain.classes}"/&gt;
-      </pre>
-    </blockquote>
+    </pre>
     <p>
       This condition can now be used wherever a Core Ant condition
       is used.
     </p>
-    <blockquote>
-      <pre>
+    <pre>
 &lt;condition property="allupper"&gt;
    &lt;alluppercase value="THIS IS ALL UPPER CASE"/&gt;
 &lt;/condition&gt;
-      </pre>
-    </blockquote>
+    </pre>
     <h3 id="customselectors">Custom Selectors</h3>
     <p>
       Custom selectors are datatypes that implement
@@ -128,8 +121,7 @@ public class AllUpperCaseCondition implements Condition {
       An example of a custom selection that selects filenames ending
       in ".java" would be:
     </p>
-    <blockquote>
-      <pre>
+    <pre>
 package com.mydomain;
 import java.io.File;
 import org.apache.tools.ant.types.selectors.FileSelector;
@@ -138,34 +130,28 @@ public class JavaSelector implements FileSelector {
        return filename.toLowerCase().endsWith(".java");
     }
 }
-      </pre>
-    </blockquote>
+    </pre>
     <p>
       Adding the selector to the system is achieved as follows:
     </p>
-    <blockquote>
-      <pre>
+    <pre>
 &lt;typedef
     name="javaselector"
     classname="com.mydomain.JavaSelector"
     classpath="${mydomain.classes}"/&gt;
-      </pre>
-    </blockquote>
-        <p>
+    </pre>
+    <p>
       This selector can now be used wherever a Core Ant selector
       is used, for example:
     </p>
-    <blockquote>
-      <pre>
+    <pre>
 &lt;copy todir="to"&gt;
    &lt;fileset dir="src"&gt;
       &lt;javaselector/&gt;
    &lt;/fileset&gt;
 &lt;/copy&gt;
-      </pre>
-    </blockquote>
-
-      <p>
+    </pre>
+    <p>
         One may use
         <code>org.apache.tools.ant.types.selectors.BaseSelector</code>,
         a convenience class that provides reasonable default
@@ -197,8 +183,7 @@ public class JavaSelector implements FileSelector {
       if a certain number of contained selectors select, one could write
       a selector as follows:
     </p>
-    <blockquote>
-      <pre>
+    <pre>
 public class MatchNumberSelectors extends BaseSelectorContainer {
     private int number = -1;
     public void setNumber(int number) {
@@ -221,13 +206,11 @@ public class MatchNumberSelectors extends BaseSelectorContainer {
         return numberSelected == number;
     }
 }
-      </pre>
-    </blockquote>
+    </pre>
     <p>
       To define and use this selector one could do:
     </p>
-    <blockquote>
-      <pre>
+    <pre>
 &lt;typedef name="numberselected"
          classname="com.mydomain.MatchNumberSelectors"/&gt;
 ...
@@ -238,8 +221,7 @@ public class MatchNumberSelectors extends BaseSelectorContainer {
       &lt;javaselector/&gt;
    &lt;/numberselected&gt;
 &lt;/fileset&gt;
-      </pre>
-    </blockquote>
+    </pre>
     <p>
       <i>The custom selector</i>
     </p>
@@ -250,7 +232,7 @@ public class MatchNumberSelectors extends BaseSelectorContainer {
     <p>You can write your own selectors and use them within the selector
       containers by specifying them within the <code>&lt;custom&gt;</code> tag.</p>
 
-        <p>To create a new Custom Selector, you have to create a class that
+    <p>To create a new Custom Selector, you have to create a class that
         implements
         <code>org.apache.tools.ant.types.selectors.ExtendFileSelector</code>.
         The easiest way to do that is through the convenience base class
@@ -305,15 +287,13 @@ public class MatchNumberSelectors extends BaseSelectorContainer {
     <p>Here is how you use <code>&lt;custom&gt;</code> to
       use your class as a selector:
     </p>
-
-    <blockquote><pre>
+    <pre>
 &lt;fileset dir="${mydir}" includes="**/*"&gt;
     &lt;custom classname="com.mydomain.MySelector"&gt;
         &lt;param name="myattribute" value="myvalue"/&gt;
     &lt;/custom&gt;
 &lt;/fileset&gt;
-      </pre></blockquote>
-
+    </pre>
     <p>The core selectors that can also be used as custom selectors
       are</p>
 
@@ -337,15 +317,13 @@ public class MatchNumberSelectors extends BaseSelectorContainer {
 
     <p>Here is the example from the Depth Selector section rewritten
     to use the selector through <code>&lt;custom&gt;</code>.</p>
-
-    <blockquote><pre>
+    <pre>
 &lt;fileset dir="${doc.path}" includes="**/*"&gt;
     &lt;custom classname="org.apache.tools.ant.types.selectors.DepthSelector"&gt;
         &lt;param name="max" value="1"/&gt;
     &lt;/custom&gt;
 &lt;/fileset&gt;
-      </pre></blockquote>
-
+    </pre>
     <p>Selects all files in the base directory and one directory below
       that.</p>
 
@@ -363,8 +341,7 @@ public class MatchNumberSelectors extends BaseSelectorContainer {
       For example a filterreader that removes every second character
       could be:
     </p>
-    <blockquote>
-      <pre>
+    <pre>
 public class RemoveOddCharacters implements ChainableReader {
    public Reader chain(Reader reader) {
       return new BaseFilterReader(reader) {
@@ -384,8 +361,7 @@ public class RemoveOddCharacters implements ChainableReader {
       }
    }
 }
-      </pre>
-    </blockquote>
+    </pre>
     <p>
       For line oriented filters it may be easier to extend
       <code>ChainableFilterReader</code> an inner class of
@@ -394,8 +370,7 @@ public class RemoveOddCharacters implements ChainableReader {
     <p>
       For example a filter that appends the line number could be
     </p>
-    <blockquote>
-      <pre>
+    <pre>
 public class AddLineNumber extends ChainableReaderFilter {
    private void lineNumber = 0;
    public String filter(String string) {
@@ -403,8 +378,7 @@ public class AddLineNumber extends ChainableReaderFilter {
       return "" + lineNumber + "\t" + string;
    }
 }
-      </pre>
-    </blockquote>
+    </pre>
 
   </body>
 </html>

http://git-wip-us.apache.org/repos/asf/ant/blob/7eeb33d5/manual/Types/dirset.html
----------------------------------------------------------------------
diff --git a/manual/Types/dirset.html b/manual/Types/dirset.html
index 24adf54..3e790dc 100644
--- a/manual/Types/dirset.html
+++ b/manual/Types/dirset.html
@@ -98,9 +98,8 @@ equivalent to an <code>&lt;and&gt;</code> selector container.</p>
       Specify what happens if the base directory does not exist.
       If true a build error will happen, if false, the dirset
       will be ignored/empty.
-      Defaults to true.
-      <em>Since Apache Ant 1.7.1 (default is true for backward compatibility
-        reasons.)</em>
+      Defaults to true (for backward compatibility reasons).
+      <em>Since Apache Ant 1.7.1</em>
     </td>
     <td valign="top" align="center">No</td>
   </tr>
@@ -108,43 +107,43 @@ equivalent to an <code>&lt;and&gt;</code> selector container.</p>
 
 <h4>Examples</h4>
 
-<blockquote><pre>
+<pre>
 &lt;dirset dir=&quot;${build.dir}&quot;&gt;
   &lt;include name=&quot;apps/**/classes&quot;/&gt;
   &lt;exclude name=&quot;apps/**/*Test*&quot;/&gt;
 &lt;/dirset&gt;
-</pre></blockquote>
+</pre>
 <p>Groups all directories named <code>classes</code> found under the
 <code>apps</code> subdirectory of <code>${build.dir}</code>, except those
 that have the text <code>Test</code> in their name.</p>
 
-<blockquote><pre>
+<pre>
 &lt;dirset dir=&quot;${build.dir}&quot;&gt;
   &lt;patternset id=&quot;non.test.classes&quot;&gt;
     &lt;include name=&quot;apps/**/classes&quot;/&gt;
     &lt;exclude name=&quot;apps/**/*Test*&quot;/&gt;
   &lt;/patternset&gt;
 &lt;/dirset&gt;
-</pre></blockquote>
+</pre>
 <p>Groups the same directories as the above example, but also establishes
 a PatternSet that can be referenced in other
 <code>&lt;dirset&gt;</code> elements, rooted at a different directory.</p>
 
-<blockquote><pre>
+<pre>
 &lt;dirset dir=&quot;${debug_build.dir}&quot;&gt;
   &lt;patternset refid=&quot;non.test.classes&quot;/&gt;
 &lt;/dirset&gt;
-</pre></blockquote>
+</pre>
 <p>Groups all directories in directory <code>${debug_build.dir}</code>,
 using the same patterns as the above example.</p>
 
-<blockquote><pre>
+<pre>
 &lt;dirset id=&quot;dirset&quot; dir=&quot;${workingdir}&quot;&gt;
    &lt;present targetdir=&quot;${workingdir}&quot;&gt;
         &lt;mapper type=&quot;glob&quot; from=&quot;*&quot; to=&quot;*/${markerfile}&quot; /&gt;
    &lt;/present&gt;
 &lt;/dirset&gt;
-</pre></blockquote>
+</pre>
 <p>Selects all directories somewhere under <code>${workingdir}</code>
 which contain a <code>${markerfile}</code>.</p>
 

http://git-wip-us.apache.org/repos/asf/ant/blob/7eeb33d5/manual/Types/extension.html
----------------------------------------------------------------------
diff --git a/manual/Types/extension.html b/manual/Types/extension.html
index b54d899..12193e2 100644
--- a/manual/Types/extension.html
+++ b/manual/Types/extension.html
@@ -83,7 +83,7 @@ Java2 Standard Edition package, in file
 </table>
 
 <h4>Examples</h4>
-<blockquote><pre>
+<pre>
 &lt;extension id=&quot;e1&quot;
     extensionName=&quot;MyExtensions&quot;
     specificationVersion=&quot;1.0&quot;
@@ -92,18 +92,18 @@ Java2 Standard Edition package, in file
     implementationVendor=&quot;Apache&quot;
     implementationVersion=&quot;2.0&quot;
     implementationURL=&quot;http://somewhere.com/myExt.jar&quot;/&gt;
-</pre></blockquote>
+</pre>
 
-<p>Fully specific extension object.</p>
+<p>Fully specified extension object.</p>
 
-<blockquote><pre>
+<pre>
 &lt;extension id=&quot;e1&quot;
     extensionName=&quot;MyExtensions&quot;
     specificationVersion=&quot;1.0&quot;
     specificationVendor=&quot;Peter Donald&quot;/&gt;
-</pre></blockquote>
+</pre>
 
-<p>Extension object that just species the specification details.</p>
+<p>Extension object that just specifies the specification details.</p>
 
 </body>
 </html>

http://git-wip-us.apache.org/repos/asf/ant/blob/7eeb33d5/manual/Types/extensionset.html
----------------------------------------------------------------------
diff --git a/manual/Types/extensionset.html b/manual/Types/extensionset.html
index a42d8f4..4b1d444 100644
--- a/manual/Types/extensionset.html
+++ b/manual/Types/extensionset.html
@@ -48,7 +48,7 @@ Java2 Standard Edition package, in file
  may be modified by attributes of libfileset</p>
 
 <h4>Examples</h4>
-<blockquote><pre>
+<pre>
 &lt;extension id=&quot;e1&quot;
     extensionName=&quot;MyExtensions&quot;
     specificationVersion=&quot;1.0&quot;
@@ -72,8 +72,7 @@ Java2 Standard Edition package, in file
   &lt;libfileset refid="lfs"/&gt;
   &lt;extension refid="e1"/&gt;
 &lt;/extensionSet&gt;
-
-</pre></blockquote>
+</pre>
 
 </body>
 </html>

http://git-wip-us.apache.org/repos/asf/ant/blob/7eeb33d5/manual/Types/filelist.html
----------------------------------------------------------------------
diff --git a/manual/Types/filelist.html b/manual/Types/filelist.html
index 3a3f61c..6a9eb62 100644
--- a/manual/Types/filelist.html
+++ b/manual/Types/filelist.html
@@ -74,42 +74,42 @@ types.
     </tr>
 </table>
 <h4>Examples</h4>
-<blockquote><pre>
+<pre>
 &lt;filelist
     id=&quot;docfiles&quot;
     dir=&quot;${doc.src}&quot;
     files=&quot;foo.xml,bar.xml&quot;/&gt;
-</pre></blockquote>
+</pre>
 
 <p>The files <code>${doc.src}/foo.xml</code> and
 <code>${doc.src}/bar.xml</code>.  Note that these files may not (yet)
 actually exist.
 </p>
 
-<blockquote><pre>
+<pre>
 &lt;filelist
     id=&quot;docfiles&quot;
     dir=&quot;${doc.src}&quot;
     files=&quot;foo.xml
            bar.xml&quot;/&gt;
-</pre></blockquote>
+</pre>
 
 <p>Same files as the example above.</p>
 
-<blockquote><pre>
+<pre>
 &lt;filelist refid=&quot;docfiles&quot;/&gt;
-</pre></blockquote>
+</pre>
 
 <p>Same files as the example above.</p>
 
-<blockquote><pre>
+<pre>
 &lt;filelist
     id=&quot;docfiles&quot;
     dir=&quot;${doc.src}&quot;&gt;
     &lt;file name="foo.xml"/&gt;
     &lt;file name="bar.xml"/&gt;
 &lt;/filelist&gt;
-</pre></blockquote>
+</pre>
 
 <p>Same files as the example above.</p>
 

http://git-wip-us.apache.org/repos/asf/ant/blob/7eeb33d5/manual/Types/fileset.html
----------------------------------------------------------------------
diff --git a/manual/Types/fileset.html b/manual/Types/fileset.html
index 47fcbec..920e85d 100644
--- a/manual/Types/fileset.html
+++ b/manual/Types/fileset.html
@@ -122,60 +122,60 @@ symbolic link but it may lead to false results on other
 platforms.</p>
 
 <h4>Examples</h4>
-<blockquote><pre>
+<pre>
 &lt;fileset dir=&quot;${server.src}&quot; casesensitive=&quot;yes&quot;&gt;
   &lt;include name=&quot;**/*.java&quot;/&gt;
   &lt;exclude name=&quot;**/*Test*&quot;/&gt;
 &lt;/fileset&gt;
-</pre></blockquote>
+</pre>
 <p>Groups all files in directory <code>${server.src}</code> that are Java
 source files and don't have the text <code>Test</code> in their
 name.</p>
 
-<blockquote><pre>
+<pre>
 &lt;fileset dir=&quot;${server.src}&quot; casesensitive=&quot;yes&quot;&gt;
   &lt;patternset id=&quot;non.test.sources&quot;&gt;
     &lt;include name=&quot;**/*.java&quot;/&gt;
     &lt;exclude name=&quot;**/*Test*&quot;/&gt;
   &lt;/patternset&gt;
 &lt;/fileset&gt;
-</pre></blockquote>
+</pre>
 <p>Groups the same files as the above example, but also establishes
 a PatternSet that can be referenced in other
 <code>&lt;fileset&gt;</code> elements, rooted at a different directory.</p>
 
-<blockquote><pre>
+<pre>
 &lt;fileset dir=&quot;${client.src}&quot; &gt;
   &lt;patternset refid=&quot;non.test.sources&quot;/&gt;
 &lt;/fileset&gt;
-</pre></blockquote>
+</pre>
 <p>Groups all files in directory <code>${client.src}</code>, using the
 same patterns as the above example.</p>
 
-<blockquote><pre>
+<pre>
 &lt;fileset dir=&quot;${server.src}&quot; casesensitive=&quot;yes&quot;&gt;
   &lt;filename name=&quot;**/*.java&quot;/&gt;
   &lt;filename name=&quot;**/*Test*&quot; negate=&quot;true&quot;/&gt;
 &lt;/fileset&gt;
-</pre></blockquote>
+</pre>
 <p>Groups the same files as the top example, but using the
 <code>&lt;filename&gt;</code> selector.</p>
 
-<blockquote><pre>
+<pre>
 &lt;fileset dir=&quot;${server.src}&quot; casesensitive=&quot;yes&quot;&gt;
   &lt;filename name=&quot;**/*.java&quot;/&gt;
   &lt;not&gt;
     &lt;filename name=&quot;**/*Test*&quot;/&gt;
   &lt;/not&gt;
 &lt;/fileset&gt;
-</pre></blockquote>
+</pre>
 <p>Groups the same files as the previous example using a combination of the
 <code>&lt;filename&gt;</code> selector and the <code>&lt;not&gt;</code>
 selector container.</p>
 
-<blockquote><pre>
+<pre>
 &lt;fileset dir="src" includes="main/" /&gt;
-</pre></blockquote>
+</pre>
 <p>Selects all files in <i>src/main</i> (e.g. <i>src/main/Foo.java</i> or
 <i>src/main/application/Bar.java</i>).</p>