This is an automated email from the ASF dual-hosted git repository.

git-site-role pushed a commit to branch asf-site
in repository https://gitbox.apache.org/repos/asf/opennlp-site.git


The following commit(s) were added to refs/heads/asf-site by this push:
     new 4019b7e5 Automatic Site Publish by Buildbot
4019b7e5 is described below

commit 4019b7e5e333ef803d38f2939131f181adaa8d2d
Author: buildbot <[email protected]>
AuthorDate: Fri Jun 9 17:15:25 2023 +0000

    Automatic Site Publish by Buildbot
---
 building.html         |   6 +-
 code-conventions.html |  18 +---
 docs/index.html       |   6 +-
 docs/legacy.html      | 108 ++++++++++++++--------
 feed.xml              | 247 ++++++++++++++++++++++++++++++++++++--------------
 get-involved.html     |  10 +-
 mailing-lists.html    |   2 +-
 maven-dependency.html |  10 +-
 news/release-170.html |  16 +++-
 news/release-171.html |  66 +++++++++-----
 news/release-172.html |  65 ++++++++-----
 news/release-180.html |   8 +-
 news/release-181.html |   8 +-
 news/release-182.html |   6 +-
 news/release-183.html |   8 +-
 news/release-184.html |   8 +-
 news/release-190.html |   8 +-
 news/release-191.html |   6 +-
 news/release-192.html |   6 +-
 news/release-193.html |   6 +-
 news/release-194.html |   6 +-
 news/release-200.html |   8 +-
 news/release-210.html |   6 +-
 news/release-211.html |   6 +-
 news/release-220.html |   6 +-
 release-model.html    |  82 ++++++++---------
 release.html          |  26 ++----
 source-code.html      |   8 +-
 using-git.html        |  20 ++--
 29 files changed, 504 insertions(+), 282 deletions(-)

diff --git a/building.html b/building.html
index 6037f784..f1b9ce03 100644
--- a/building.html
+++ b/building.html
@@ -183,15 +183,15 @@ body {
 <div class="ulist">
 <ul>
 <li>
-<p>If you have an IDE installed such as <a 
href="https://netbeans.org/";>NetBeans</a> or <a 
href="https://www.eclipse.org/";>Eclipse</a> installed,
+<p>If you have an IDE installed such as <a href="https://netbeans.org/"; 
target="_blank" rel="noopener">NetBeans</a> or <a 
href="https://www.eclipse.org/"; target="_blank" rel="noopener">Eclipse</a> 
installed,
 it will make your development easier.  However, follow on for the brave.</p>
 </li>
 <li>
-<p>At least <a 
href="https://www.oracle.com/technetwork/java/javase/overview/index.html";>JDK 
11</a> is required to compile and run
+<p>At least <a 
href="https://www.oracle.com/technetwork/java/javase/overview/index.html"; 
target="_blank" rel="noopener">JDK 11</a> is required to compile and run
 the object code.</p>
 </li>
 <li>
-<p>At least <a href="https://maven.apache.org/";>Apache Maven 3.3.9</a> is 
required to build the source
+<p>At least <a href="https://maven.apache.org/"; target="_blank" 
rel="noopener">Apache Maven 3.3.9</a> is required to build the source
 files and assemble the project.</p>
 </li>
 </ul>
diff --git a/code-conventions.html b/code-conventions.html
index db2832c2..6796cab8 100644
--- a/code-conventions.html
+++ b/code-conventions.html
@@ -188,9 +188,6 @@ is contributed to the project should adhere to these 
guidelines.</p>
 </li>
 <li>
 <p>Place open braces on the same line as the declaration, for example:</p>
-</li>
-</ul>
-</div>
 <div class="listingblock">
 <div class="content">
 <pre class="prettyprint highlight"><code data-lang="java">public class Foo 
extends Bar {
@@ -207,8 +204,7 @@ is contributed to the project should adhere to these 
guidelines.</p>
 }</code></pre>
 </div>
 </div>
-<div class="ulist">
-<ul>
+</li>
 <li>
 <p>Wrap lines longer than 80 to 100 characters. For wrapped lines use an 
indent of 4 characters.</p>
 </li>
@@ -232,17 +228,13 @@ is contributed to the project should adhere to these 
guidelines.</p>
 </li>
 <li>
 <p>Do <em>not</em> use package imports, for example:</p>
-<div class="ulist">
-<ul>
-<li>
+<div class="paragraph">
 <p><code>import org.apache.opennlp.*</code></p>
-</li>
-</ul>
 </div>
 </li>
 <li>
 <p>For other cases, we try to follow
-<a 
href="https://www.oracle.com/java/technologies/cc-java-programming-language.html";>Java
 code conventions</a> as much as possible.</p>
+<a 
href="https://www.oracle.com/java/technologies/cc-java-programming-language.html";
 target="_blank" rel="noopener">Java code conventions</a> as much as 
possible.</p>
 </li>
 </ul>
 </div>
@@ -254,10 +246,10 @@ is contributed to the project should adhere to these 
guidelines.</p>
 <div class="ulist">
 <ul>
 <li>
-<p>A code formatter file for Eclipse can be found <a 
href="code-formatter/OpenNLP-Eclipse-Formatter.xml">here</a> and the import 
order file <a href="code-formatter/eclipse-opennlp.importorder">here</a>.</p>
+<p>A code formatter file for Eclipse can be found <a 
href="code-formatter/OpenNLP-Eclipse-Formatter.xml" 
target="read-later">here</a> and the import order file <a 
href="code-formatter/eclipse-opennlp.importorder" 
target="read-later">here</a>.</p>
 </li>
 <li>
-<p>A code formatter file for IntelliJ can be found <a 
href="code-formatter/OpenNLP-IntelliJ-Formatter.xml">here</a>.</p>
+<p>A code formatter file for IntelliJ can be found <a 
href="code-formatter/OpenNLP-IntelliJ-Formatter.xml" 
target="read-later">here</a>.</p>
 </li>
 </ul>
 </div>
diff --git a/docs/index.html b/docs/index.html
index ccb8bfef..a11653e5 100644
--- a/docs/index.html
+++ b/docs/index.html
@@ -183,8 +183,9 @@ explains how the various OpenNLP components can be used and 
trained.</p>
 </div>
 </div>
 </div>
-<div class="sect2">
-<h3 id="apache_opennlp_2_2_0_documentation">Apache OpenNLP 2.2.0 
documentation</h3>
+<div class="sect1">
+<h2 id="apache_opennlp_2_2_0_documentation">Apache OpenNLP 2.2.0 
documentation</h2>
+<div class="sectionbody">
 <div class="ulist">
 <ul>
 <li>
@@ -211,6 +212,7 @@ explains how the various OpenNLP components can be used and 
trained.</p>
 <p>Documentation for archived releases can be found <a 
href="/docs/legacy.html">here</a>.</p>
 </div>
 </div>
+</div>
 
 </div>
 
diff --git a/docs/legacy.html b/docs/legacy.html
index 36ae4099..6132563c 100644
--- a/docs/legacy.html
+++ b/docs/legacy.html
@@ -195,8 +195,9 @@ explains how the various OpenNLP components can be used and 
trained.</p>
 </div>
 </div>
 </div>
-<div class="sect2">
-<h3 id="apache_opennlp_2_1_1_documentation">Apache OpenNLP 2.1.1 
documentation</h3>
+<div class="sect1">
+<h2 id="apache_opennlp_2_1_1_documentation">Apache OpenNLP 2.1.1 
documentation</h2>
+<div class="sectionbody">
 <div class="ulist">
 <ul>
 <li>
@@ -217,8 +218,10 @@ explains how the various OpenNLP components can be used 
and trained.</p>
 </ul>
 </div>
 </div>
-<div class="sect2">
-<h3 id="apache_opennlp_2_1_0_documentation">Apache OpenNLP 2.1.0 
documentation</h3>
+</div>
+<div class="sect1">
+<h2 id="apache_opennlp_2_1_0_documentation">Apache OpenNLP 2.1.0 
documentation</h2>
+<div class="sectionbody">
 <div class="ulist">
 <ul>
 <li>
@@ -239,8 +242,10 @@ explains how the various OpenNLP components can be used 
and trained.</p>
 </ul>
 </div>
 </div>
-<div class="sect2">
-<h3 id="apache_opennlp_2_0_0_documentation">Apache OpenNLP 2.0.0 
documentation</h3>
+</div>
+<div class="sect1">
+<h2 id="apache_opennlp_2_0_0_documentation">Apache OpenNLP 2.0.0 
documentation</h2>
+<div class="sectionbody">
 <div class="ulist">
 <ul>
 <li>
@@ -261,8 +266,10 @@ explains how the various OpenNLP components can be used 
and trained.</p>
 </ul>
 </div>
 </div>
-<div class="sect2">
-<h3 id="apache_opennlp_1_9_4_documentation">Apache OpenNLP 1.9.4 
documentation</h3>
+</div>
+<div class="sect1">
+<h2 id="apache_opennlp_1_9_4_documentation">Apache OpenNLP 1.9.4 
documentation</h2>
+<div class="sectionbody">
 <div class="ulist">
 <ul>
 <li>
@@ -283,8 +290,10 @@ explains how the various OpenNLP components can be used 
and trained.</p>
 </ul>
 </div>
 </div>
-<div class="sect2">
-<h3 id="apache_opennlp_1_9_3_documentation">Apache OpenNLP 1.9.3 
documentation</h3>
+</div>
+<div class="sect1">
+<h2 id="apache_opennlp_1_9_3_documentation">Apache OpenNLP 1.9.3 
documentation</h2>
+<div class="sectionbody">
 <div class="ulist">
 <ul>
 <li>
@@ -305,8 +314,10 @@ explains how the various OpenNLP components can be used 
and trained.</p>
 </ul>
 </div>
 </div>
-<div class="sect2">
-<h3 id="apache_opennlp_1_9_2_documentation">Apache OpenNLP 1.9.2 
documentation</h3>
+</div>
+<div class="sect1">
+<h2 id="apache_opennlp_1_9_2_documentation">Apache OpenNLP 1.9.2 
documentation</h2>
+<div class="sectionbody">
 <div class="ulist">
 <ul>
 <li>
@@ -327,8 +338,10 @@ explains how the various OpenNLP components can be used 
and trained.</p>
 </ul>
 </div>
 </div>
-<div class="sect2">
-<h3 id="apache_opennlp_1_9_1_documentation">Apache OpenNLP 1.9.1 
documentation</h3>
+</div>
+<div class="sect1">
+<h2 id="apache_opennlp_1_9_1_documentation">Apache OpenNLP 1.9.1 
documentation</h2>
+<div class="sectionbody">
 <div class="ulist">
 <ul>
 <li>
@@ -349,8 +362,10 @@ explains how the various OpenNLP components can be used 
and trained.</p>
 </ul>
 </div>
 </div>
-<div class="sect2">
-<h3 id="apache_opennlp_1_9_0_documentation">Apache OpenNLP 1.9.0 
documentation</h3>
+</div>
+<div class="sect1">
+<h2 id="apache_opennlp_1_9_0_documentation">Apache OpenNLP 1.9.0 
documentation</h2>
+<div class="sectionbody">
 <div class="ulist">
 <ul>
 <li>
@@ -371,8 +386,10 @@ explains how the various OpenNLP components can be used 
and trained.</p>
 </ul>
 </div>
 </div>
-<div class="sect2">
-<h3 id="apache_opennlp_1_8_4_documentation">Apache OpenNLP 1.8.4 
documentation</h3>
+</div>
+<div class="sect1">
+<h2 id="apache_opennlp_1_8_4_documentation">Apache OpenNLP 1.8.4 
documentation</h2>
+<div class="sectionbody">
 <div class="ulist">
 <ul>
 <li>
@@ -393,8 +410,10 @@ explains how the various OpenNLP components can be used 
and trained.</p>
 </ul>
 </div>
 </div>
-<div class="sect2">
-<h3 id="apache_opennlp_1_8_3_documentation">Apache OpenNLP 1.8.3 
documentation</h3>
+</div>
+<div class="sect1">
+<h2 id="apache_opennlp_1_8_3_documentation">Apache OpenNLP 1.8.3 
documentation</h2>
+<div class="sectionbody">
 <div class="ulist">
 <ul>
 <li>
@@ -415,8 +434,10 @@ explains how the various OpenNLP components can be used 
and trained.</p>
 </ul>
 </div>
 </div>
-<div class="sect2">
-<h3 id="apache_opennlp_1_8_2_documentation">Apache OpenNLP 1.8.2 
documentation</h3>
+</div>
+<div class="sect1">
+<h2 id="apache_opennlp_1_8_2_documentation">Apache OpenNLP 1.8.2 
documentation</h2>
+<div class="sectionbody">
 <div class="ulist">
 <ul>
 <li>
@@ -437,8 +458,10 @@ explains how the various OpenNLP components can be used 
and trained.</p>
 </ul>
 </div>
 </div>
-<div class="sect2">
-<h3 id="apache_opennlp_1_8_1_documentation">Apache OpenNLP 1.8.1 
documentation</h3>
+</div>
+<div class="sect1">
+<h2 id="apache_opennlp_1_8_1_documentation">Apache OpenNLP 1.8.1 
documentation</h2>
+<div class="sectionbody">
 <div class="ulist">
 <ul>
 <li>
@@ -459,8 +482,10 @@ explains how the various OpenNLP components can be used 
and trained.</p>
 </ul>
 </div>
 </div>
-<div class="sect2">
-<h3 id="apache_opennlp_1_8_0_documentation">Apache OpenNLP 1.8.0 
documentation</h3>
+</div>
+<div class="sect1">
+<h2 id="apache_opennlp_1_8_0_documentation">Apache OpenNLP 1.8.0 
documentation</h2>
+<div class="sectionbody">
 <div class="ulist">
 <ul>
 <li>
@@ -481,8 +506,10 @@ explains how the various OpenNLP components can be used 
and trained.</p>
 </ul>
 </div>
 </div>
-<div class="sect2">
-<h3 id="apache_opennlp_1_7_2_documentation">Apache OpenNLP 1.7.2 
documentation</h3>
+</div>
+<div class="sect1">
+<h2 id="apache_opennlp_1_7_2_documentation">Apache OpenNLP 1.7.2 
documentation</h2>
+<div class="sectionbody">
 <div class="ulist">
 <ul>
 <li>
@@ -503,8 +530,10 @@ explains how the various OpenNLP components can be used 
and trained.</p>
 </ul>
 </div>
 </div>
-<div class="sect2">
-<h3 id="apache_opennlp_1_7_1_documentation">Apache OpenNLP 1.7.1 
documentation</h3>
+</div>
+<div class="sect1">
+<h2 id="apache_opennlp_1_7_1_documentation">Apache OpenNLP 1.7.1 
documentation</h2>
+<div class="sectionbody">
 <div class="ulist">
 <ul>
 <li>
@@ -525,8 +554,10 @@ explains how the various OpenNLP components can be used 
and trained.</p>
 </ul>
 </div>
 </div>
-<div class="sect2">
-<h3 id="apache_opennlp_1_7_0_documentation">Apache OpenNLP 1.7.0 
documentation</h3>
+</div>
+<div class="sect1">
+<h2 id="apache_opennlp_1_7_0_documentation">Apache OpenNLP 1.7.0 
documentation</h2>
+<div class="sectionbody">
 <div class="ulist">
 <ul>
 <li>
@@ -547,8 +578,10 @@ explains how the various OpenNLP components can be used 
and trained.</p>
 </ul>
 </div>
 </div>
-<div class="sect2">
-<h3 id="apache_opennlp_1_6_0_documentation">Apache OpenNLP 1.6.0 
documentation</h3>
+</div>
+<div class="sect1">
+<h2 id="apache_opennlp_1_6_0_documentation">Apache OpenNLP 1.6.0 
documentation</h2>
+<div class="sectionbody">
 <div class="ulist">
 <ul>
 <li>
@@ -563,8 +596,10 @@ explains how the various OpenNLP components can be used 
and trained.</p>
 </ul>
 </div>
 </div>
-<div class="sect2">
-<h3 id="apache_opennlp_1_5_3_documentation">Apache OpenNLP 1.5.3 
documentation</h3>
+</div>
+<div class="sect1">
+<h2 id="apache_opennlp_1_5_3_documentation">Apache OpenNLP 1.5.3 
documentation</h2>
+<div class="sectionbody">
 <div class="ulist">
 <ul>
 <li>
@@ -579,6 +614,7 @@ explains how the various OpenNLP components can be used and 
trained.</p>
 </ul>
 </div>
 </div>
+</div>
 
 </div>
 
diff --git a/feed.xml b/feed.xml
index 01db9986..92137fe2 100644
--- a/feed.xml
+++ b/feed.xml
@@ -24,8 +24,8 @@
     <atom:link href="https://opennlp.apache.org/feed.xml"; rel="self" 
type="application/rss+xml" />
     <description>The Apache OpenNLP library is a machine learning based 
toolkit for the processing of natural language text</description>
     <language>en-us</language>
-    <pubDate>Fri, 9 Jun 2023 15:12:15 +0000</pubDate>
-    <lastBuildDate>Fri, 9 Jun 2023 15:12:15 +0000</lastBuildDate>
+    <pubDate>Fri, 9 Jun 2023 17:15:13 +0000</pubDate>
+    <lastBuildDate>Fri, 9 Jun 2023 17:15:13 +0000</lastBuildDate>
 
     <item>
       <title>Apache OpenNLP 2.2.0 released</title>
@@ -52,7 +52,9 @@
 &lt;/div&gt;
 &lt;/div&gt;
 &lt;/div&gt;
-&lt;h1 id=&quot;whats_new_in_apache_opennlp_2_2_0&quot; 
class=&quot;sect0&quot;&gt;What&amp;#8217;s new in Apache OpenNLP 
2.2.0&lt;/h1&gt;
+&lt;div class=&quot;sect1&quot;&gt;
+&lt;h2 id=&quot;whats_new_in_apache_opennlp_2_2_0&quot;&gt;What&amp;#8217;s 
new in Apache OpenNLP 2.2.0&lt;/h2&gt;
+&lt;div class=&quot;sectionbody&quot;&gt;
 &lt;div class=&quot;paragraph&quot;&gt;
 &lt;p&gt;This version contains improvements to logging by introducing SLF4J to 
replace logging using System.out. ONNX Runtime support for 
sentence-transformers was also introduced. This version also includes fixes for 
stemming, documentation, and unit tests.&lt;/p&gt;
 &lt;/div&gt;
@@ -61,6 +63,8 @@
 &lt;/div&gt;
 &lt;div class=&quot;paragraph&quot;&gt;
 &lt;p&gt;--The Apache OpenNLP Team&lt;/p&gt;
+&lt;/div&gt;
+&lt;/div&gt;
 &lt;/div&gt;
        </description>
     </item>
@@ -89,7 +93,9 @@
 &lt;/div&gt;
 &lt;/div&gt;
 &lt;/div&gt;
-&lt;h1 id=&quot;whats_new_in_apache_opennlp_2_1_1&quot; 
class=&quot;sect0&quot;&gt;What&amp;#8217;s new in Apache OpenNLP 
2.1.1&lt;/h1&gt;
+&lt;div class=&quot;sect1&quot;&gt;
+&lt;h2 id=&quot;whats_new_in_apache_opennlp_2_1_1&quot;&gt;What&amp;#8217;s 
new in Apache OpenNLP 2.1.1&lt;/h2&gt;
+&lt;div class=&quot;sectionbody&quot;&gt;
 &lt;div class=&quot;paragraph&quot;&gt;
 &lt;p&gt;This version contains improvements to unit tests, code quality, 
JavaDocs, and a few minor fixes.&lt;/p&gt;
 &lt;/div&gt;
@@ -98,6 +104,8 @@
 &lt;/div&gt;
 &lt;div class=&quot;paragraph&quot;&gt;
 &lt;p&gt;--The Apache OpenNLP Team&lt;/p&gt;
+&lt;/div&gt;
+&lt;/div&gt;
 &lt;/div&gt;
        </description>
     </item>
@@ -126,7 +134,9 @@
 &lt;/div&gt;
 &lt;/div&gt;
 &lt;/div&gt;
-&lt;h1 id=&quot;whats_new_in_apache_opennlp_2_1_0&quot; 
class=&quot;sect0&quot;&gt;What&amp;#8217;s new in Apache OpenNLP 
2.1.0&lt;/h1&gt;
+&lt;div class=&quot;sect1&quot;&gt;
+&lt;h2 id=&quot;whats_new_in_apache_opennlp_2_1_0&quot;&gt;What&amp;#8217;s 
new in Apache OpenNLP 2.1.0&lt;/h2&gt;
+&lt;div class=&quot;sectionbody&quot;&gt;
 &lt;div class=&quot;ulist&quot;&gt;
 &lt;ul&gt;
 &lt;li&gt;
@@ -157,6 +167,8 @@
 &lt;/div&gt;
 &lt;div class=&quot;paragraph&quot;&gt;
 &lt;p&gt;--The Apache OpenNLP Team&lt;/p&gt;
+&lt;/div&gt;
+&lt;/div&gt;
 &lt;/div&gt;
        </description>
     </item>
@@ -185,7 +197,9 @@
 &lt;/div&gt;
 &lt;/div&gt;
 &lt;/div&gt;
-&lt;h1 id=&quot;whats_new_in_apache_opennlp_2_0_0&quot; 
class=&quot;sect0&quot;&gt;What&amp;#8217;s new in Apache OpenNLP 
2.0.0&lt;/h1&gt;
+&lt;div class=&quot;sect1&quot;&gt;
+&lt;h2 id=&quot;whats_new_in_apache_opennlp_2_0_0&quot;&gt;What&amp;#8217;s 
new in Apache OpenNLP 2.0.0&lt;/h2&gt;
+&lt;div class=&quot;sectionbody&quot;&gt;
 &lt;div class=&quot;ulist&quot;&gt;
 &lt;ul&gt;
 &lt;li&gt;
@@ -221,10 +235,12 @@
 &lt;p&gt;A detailed list of the issues related to this release can be found in 
the release notes.&lt;/p&gt;
 &lt;/div&gt;
 &lt;div class=&quot;paragraph&quot;&gt;
-&lt;p&gt;For a complete list of fixed bugs and improvements please see the 
README.html file included in the distribution.&lt;/p&gt;
+&lt;p&gt;For a complete list of fixed bugs and improvements please see the 
&lt;em&gt;README.html&lt;/em&gt; file included in the distribution.&lt;/p&gt;
 &lt;/div&gt;
 &lt;div class=&quot;paragraph&quot;&gt;
 &lt;p&gt;--The Apache OpenNLP Team&lt;/p&gt;
+&lt;/div&gt;
+&lt;/div&gt;
 &lt;/div&gt;
        </description>
     </item>
@@ -253,7 +269,9 @@
 &lt;/div&gt;
 &lt;/div&gt;
 &lt;/div&gt;
-&lt;h1 id=&quot;whats_new_in_apache_opennlp_1_9_4&quot; 
class=&quot;sect0&quot;&gt;What&amp;#8217;s new in Apache OpenNLP 
1.9.4&lt;/h1&gt;
+&lt;div class=&quot;sect1&quot;&gt;
+&lt;h2 id=&quot;whats_new_in_apache_opennlp_1_9_4&quot;&gt;What&amp;#8217;s 
new in Apache OpenNLP 1.9.4&lt;/h2&gt;
+&lt;div class=&quot;sectionbody&quot;&gt;
 &lt;div class=&quot;ulist&quot;&gt;
 &lt;ul&gt;
 &lt;li&gt;
@@ -278,6 +296,8 @@
 &lt;/div&gt;
 &lt;div class=&quot;paragraph&quot;&gt;
 &lt;p&gt;--The Apache OpenNLP Team&lt;/p&gt;
+&lt;/div&gt;
+&lt;/div&gt;
 &lt;/div&gt;
        </description>
     </item>
@@ -324,7 +344,9 @@ See the models&apos; README for more information on the 
models including how eac
 &lt;/div&gt;
 &lt;/div&gt;
 &lt;/div&gt;
-&lt;h1 id=&quot;whats_new_in_apache_opennlp_1_9_3&quot; 
class=&quot;sect0&quot;&gt;What&amp;#8217;s new in Apache OpenNLP 
1.9.3&lt;/h1&gt;
+&lt;div class=&quot;sect1&quot;&gt;
+&lt;h2 id=&quot;whats_new_in_apache_opennlp_1_9_3&quot;&gt;What&amp;#8217;s 
new in Apache OpenNLP 1.9.3&lt;/h2&gt;
+&lt;div class=&quot;sectionbody&quot;&gt;
 &lt;div class=&quot;ulist&quot;&gt;
 &lt;ul&gt;
 &lt;li&gt;
@@ -355,6 +377,8 @@ See the models&apos; README for more information on the 
models including how eac
 &lt;/div&gt;
 &lt;div class=&quot;paragraph&quot;&gt;
 &lt;p&gt;--The Apache OpenNLP Team&lt;/p&gt;
+&lt;/div&gt;
+&lt;/div&gt;
 &lt;/div&gt;
        </description>
     </item>
@@ -383,7 +407,9 @@ See the models&apos; README for more information on the 
models including how eac
 &lt;/div&gt;
 &lt;/div&gt;
 &lt;/div&gt;
-&lt;h1 id=&quot;whats_new_in_apache_opennlp_1_9_2&quot; 
class=&quot;sect0&quot;&gt;What&amp;#8217;s new in Apache OpenNLP 
1.9.2&lt;/h1&gt;
+&lt;div class=&quot;sect1&quot;&gt;
+&lt;h2 id=&quot;whats_new_in_apache_opennlp_1_9_2&quot;&gt;What&amp;#8217;s 
new in Apache OpenNLP 1.9.2&lt;/h2&gt;
+&lt;div class=&quot;sectionbody&quot;&gt;
 &lt;div class=&quot;ulist&quot;&gt;
 &lt;ul&gt;
 &lt;li&gt;
@@ -408,6 +434,8 @@ See the models&apos; README for more information on the 
models including how eac
 &lt;/div&gt;
 &lt;div class=&quot;paragraph&quot;&gt;
 &lt;p&gt;--The Apache OpenNLP Team&lt;/p&gt;
+&lt;/div&gt;
+&lt;/div&gt;
 &lt;/div&gt;
        </description>
     </item>
@@ -436,7 +464,9 @@ See the models&apos; README for more information on the 
models including how eac
 &lt;/div&gt;
 &lt;/div&gt;
 &lt;/div&gt;
-&lt;h1 id=&quot;whats_new_in_apache_opennlp_1_9_1&quot; 
class=&quot;sect0&quot;&gt;What&amp;#8217;s new in Apache OpenNLP 
1.9.1&lt;/h1&gt;
+&lt;div class=&quot;sect1&quot;&gt;
+&lt;h2 id=&quot;whats_new_in_apache_opennlp_1_9_1&quot;&gt;What&amp;#8217;s 
new in Apache OpenNLP 1.9.1&lt;/h2&gt;
+&lt;div class=&quot;sectionbody&quot;&gt;
 &lt;div class=&quot;ulist&quot;&gt;
 &lt;ul&gt;
 &lt;li&gt;
@@ -479,6 +509,8 @@ See the models&apos; README for more information on the 
models including how eac
 &lt;/div&gt;
 &lt;div class=&quot;paragraph&quot;&gt;
 &lt;p&gt;--The Apache OpenNLP Team&lt;/p&gt;
+&lt;/div&gt;
+&lt;/div&gt;
 &lt;/div&gt;
        </description>
     </item>
@@ -507,12 +539,14 @@ See the models&apos; README for more information on the 
models including how eac
 &lt;/div&gt;
 &lt;/div&gt;
 &lt;/div&gt;
-&lt;h1 id=&quot;whats_new_in_apache_opennlp_1_9_0&quot; 
class=&quot;sect0&quot;&gt;What&amp;#8217;s new in Apache OpenNLP 
1.9.0&lt;/h1&gt;
+&lt;div class=&quot;sect1&quot;&gt;
+&lt;h2 id=&quot;whats_new_in_apache_opennlp_1_9_0&quot;&gt;What&amp;#8217;s 
new in Apache OpenNLP 1.9.0&lt;/h2&gt;
+&lt;div class=&quot;sectionbody&quot;&gt;
 &lt;div class=&quot;paragraph&quot;&gt;
 &lt;p&gt;This release introduces new features, improvements and bug fixes. 
Java 1.8 and Maven 3.3.9 are required.&lt;/p&gt;
 &lt;/div&gt;
 &lt;div class=&quot;paragraph&quot;&gt;
-&lt;p&gt;Additionally the release contains the following changes:&lt;/p&gt;
+&lt;p&gt;Additionally, the release contains the following changes:&lt;/p&gt;
 &lt;/div&gt;
 &lt;div class=&quot;ulist&quot;&gt;
 &lt;ul&gt;
@@ -556,6 +590,8 @@ See the models&apos; README for more information on the 
models including how eac
 &lt;/div&gt;
 &lt;div class=&quot;paragraph&quot;&gt;
 &lt;p&gt;--The Apache OpenNLP Team&lt;/p&gt;
+&lt;/div&gt;
+&lt;/div&gt;
 &lt;/div&gt;
        </description>
     </item>
@@ -584,12 +620,14 @@ See the models&apos; README for more information on the 
models including how eac
 &lt;/div&gt;
 &lt;/div&gt;
 &lt;/div&gt;
-&lt;h1 id=&quot;whats_new_in_apache_opennlp_1_8_4&quot; 
class=&quot;sect0&quot;&gt;What&amp;#8217;s new in Apache OpenNLP 
1.8.4&lt;/h1&gt;
+&lt;div class=&quot;sect1&quot;&gt;
+&lt;h2 id=&quot;whats_new_in_apache_opennlp_1_8_4&quot;&gt;What&amp;#8217;s 
new in Apache OpenNLP 1.8.4&lt;/h2&gt;
+&lt;div class=&quot;sectionbody&quot;&gt;
 &lt;div class=&quot;paragraph&quot;&gt;
 &lt;p&gt;This release introduces new features, improvements and bug fixes. 
Java 1.8 and Maven 3.3.9 are required.&lt;/p&gt;
 &lt;/div&gt;
 &lt;div class=&quot;paragraph&quot;&gt;
-&lt;p&gt;Additionally the release contains the following changes:&lt;/p&gt;
+&lt;p&gt;Additionally, the release contains the following changes:&lt;/p&gt;
 &lt;/div&gt;
 &lt;div class=&quot;ulist&quot;&gt;
 &lt;ul&gt;
@@ -627,6 +665,8 @@ See the models&apos; README for more information on the 
models including how eac
 &lt;/div&gt;
 &lt;div class=&quot;paragraph&quot;&gt;
 &lt;p&gt;--The Apache OpenNLP Team&lt;/p&gt;
+&lt;/div&gt;
+&lt;/div&gt;
 &lt;/div&gt;
        </description>
     </item>
@@ -691,12 +731,14 @@ The Language Detector Model can detect 103 languages and 
outputs ISO 639-3 codes
 &lt;/div&gt;
 &lt;/div&gt;
 &lt;/div&gt;
-&lt;h1 id=&quot;whats_new_in_apache_opennlp_1_8_3&quot; 
class=&quot;sect0&quot;&gt;What&amp;#8217;s new in Apache OpenNLP 
1.8.3&lt;/h1&gt;
+&lt;div class=&quot;sect1&quot;&gt;
+&lt;h2 id=&quot;whats_new_in_apache_opennlp_1_8_3&quot;&gt;What&amp;#8217;s 
new in Apache OpenNLP 1.8.3&lt;/h2&gt;
+&lt;div class=&quot;sectionbody&quot;&gt;
 &lt;div class=&quot;paragraph&quot;&gt;
 &lt;p&gt;This release introduces new features, improvements and bug fixes. 
Java 1.8 and Maven 3.3.9 are required.&lt;/p&gt;
 &lt;/div&gt;
 &lt;div class=&quot;paragraph&quot;&gt;
-&lt;p&gt;Additionally the release contains the following noteworthy changes:
+&lt;p&gt;Additionally, the release contains the following noteworthy changes:
 - New experimental API for Word Vectors and support for Glove vector files
 - Code cleanups and addition of test cases
 - Java 9 module name is now set to org.apache.opennlp.tools
@@ -710,6 +752,8 @@ The Language Detector Model can detect 103 languages and 
outputs ISO 639-3 codes
 &lt;/div&gt;
 &lt;div class=&quot;paragraph&quot;&gt;
 &lt;p&gt;--The Apache OpenNLP Team&lt;/p&gt;
+&lt;/div&gt;
+&lt;/div&gt;
 &lt;/div&gt;
        </description>
     </item>
@@ -819,7 +863,9 @@ This issue was discovered by Nishil Shah of 
Salesforce.&lt;/p&gt;
 &lt;/div&gt;
 &lt;/div&gt;
 &lt;/div&gt;
-&lt;h1 id=&quot;whats_new_in_apache_opennlp_1_8_2&quot; 
class=&quot;sect0&quot;&gt;What&amp;#8217;s new in Apache OpenNLP 
1.8.2&lt;/h1&gt;
+&lt;div class=&quot;sect1&quot;&gt;
+&lt;h2 id=&quot;whats_new_in_apache_opennlp_1_8_2&quot;&gt;What&amp;#8217;s 
new in Apache OpenNLP 1.8.2&lt;/h2&gt;
+&lt;div class=&quot;sectionbody&quot;&gt;
 &lt;div class=&quot;paragraph&quot;&gt;
 &lt;p&gt;This release introduces some minor improvements and bug fixes. Java 
1.8 is required.&lt;/p&gt;
 &lt;/div&gt;
@@ -838,6 +884,8 @@ This issue was discovered by Nishil Shah of 
Salesforce.&lt;/p&gt;
 &lt;/div&gt;
 &lt;div class=&quot;paragraph&quot;&gt;
 &lt;p&gt;--The Apache OpenNLP Team&lt;/p&gt;
+&lt;/div&gt;
+&lt;/div&gt;
 &lt;/div&gt;
        </description>
     </item>
@@ -875,12 +923,14 @@ This issue was discovered by Nishil Shah of 
Salesforce.&lt;/p&gt;
 &lt;/div&gt;
 &lt;/div&gt;
 &lt;/div&gt;
-&lt;h1 id=&quot;whats_new_in_apache_opennlp_1_8_1&quot; 
class=&quot;sect0&quot;&gt;What&amp;#8217;s new in Apache OpenNLP 
1.8.1&lt;/h1&gt;
+&lt;div class=&quot;sect1&quot;&gt;
+&lt;h2 id=&quot;whats_new_in_apache_opennlp_1_8_1&quot;&gt;What&amp;#8217;s 
new in Apache OpenNLP 1.8.1&lt;/h2&gt;
+&lt;div class=&quot;sectionbody&quot;&gt;
 &lt;div class=&quot;paragraph&quot;&gt;
 &lt;p&gt;This release introduces many new features, improvements and bug 
fixes. The API has been improved for a better consistency and many deprecated 
methods were removed. Java 1.8 is required.&lt;/p&gt;
 &lt;/div&gt;
 &lt;div class=&quot;paragraph&quot;&gt;
-&lt;p&gt;Additionally the release contains the following noteworthy 
changes:&lt;/p&gt;
+&lt;p&gt;Additionally, the release contains the following noteworthy 
changes:&lt;/p&gt;
 &lt;/div&gt;
 &lt;div class=&quot;ulist&quot;&gt;
 &lt;ul&gt;
@@ -927,6 +977,8 @@ This issue was discovered by Nishil Shah of 
Salesforce.&lt;/p&gt;
 &lt;/div&gt;
 &lt;div class=&quot;paragraph&quot;&gt;
 &lt;p&gt;--The Apache OpenNLP Team&lt;/p&gt;
+&lt;/div&gt;
+&lt;/div&gt;
 &lt;/div&gt;
        </description>
     </item>
@@ -964,12 +1016,14 @@ This issue was discovered by Nishil Shah of 
Salesforce.&lt;/p&gt;
 &lt;/div&gt;
 &lt;/div&gt;
 &lt;/div&gt;
-&lt;h1 id=&quot;whats_new_in_apache_opennlp_1_8_0&quot; 
class=&quot;sect0&quot;&gt;What&amp;#8217;s new in Apache OpenNLP 
1.8.0&lt;/h1&gt;
+&lt;div class=&quot;sect1&quot;&gt;
+&lt;h2 id=&quot;whats_new_in_apache_opennlp_1_8_0&quot;&gt;What&amp;#8217;s 
new in Apache OpenNLP 1.8.0&lt;/h2&gt;
+&lt;div class=&quot;sectionbody&quot;&gt;
 &lt;div class=&quot;paragraph&quot;&gt;
 &lt;p&gt;This release introduces many new features, improvements and bug 
fixes. The API has been improved for a better consistency and many deprecated 
methods were removed. Java 1.8 is required.&lt;/p&gt;
 &lt;/div&gt;
 &lt;div class=&quot;paragraph&quot;&gt;
-&lt;p&gt;Additionally the release contains the following noteworthy 
changes:&lt;/p&gt;
+&lt;p&gt;Additionally, the release contains the following noteworthy 
changes:&lt;/p&gt;
 &lt;/div&gt;
 &lt;div class=&quot;ulist&quot;&gt;
 &lt;ul&gt;
@@ -1028,6 +1082,8 @@ This issue was discovered by Nishil Shah of 
Salesforce.&lt;/p&gt;
 &lt;/div&gt;
 &lt;div class=&quot;paragraph&quot;&gt;
 &lt;p&gt;--The Apache OpenNLP Team&lt;/p&gt;
+&lt;/div&gt;
+&lt;/div&gt;
 &lt;/div&gt;
        </description>
     </item>
@@ -1076,30 +1132,53 @@ Maven 3.3.9 is required for building it&lt;/p&gt;
 &lt;p&gt;The results of the build will be placed  in:
     opennlp-distr/target/apache-opennlp-1.7.2-bin.tar-gz (or .zip)&lt;/p&gt;
 &lt;/div&gt;
-&lt;div class=&quot;paragraph&quot;&gt;
-&lt;p&gt;What is new in Apache OpenNLP 1.7.2&lt;/p&gt;
 &lt;/div&gt;
-&lt;div class=&quot;listingblock&quot;&gt;
-&lt;div class=&quot;content&quot;&gt;
-&lt;pre&gt;This release introduces many new features, improvements and bug 
fixes. The API
+&lt;/div&gt;
+&lt;div class=&quot;sect1&quot;&gt;
+&lt;h2 id=&quot;what_is_new_in_apache_opennlp_1_7_2&quot;&gt;What is new in 
Apache OpenNLP 1.7.2&lt;/h2&gt;
+&lt;div class=&quot;sectionbody&quot;&gt;
+&lt;div class=&quot;paragraph&quot;&gt;
+&lt;p&gt;This release introduces many new features, improvements and bug 
fixes. The API
 has been improved for a better consistency and 1.4 deprecated methods were
-removed. Now Java 1.8 is required.
-
-Additionally the release contains the following noteworthy changes:
-
-- Name Finder evaluation can now show a confusion matrix
-- The default evaluation output contains more details
-- Added a Language Model CLI tool
-- Add Moses format support
-- More refactoring and cleanup, specially in Machine Learning package and 
Dictionary
-- Removed deprecated trainers from UIMA integration
-- Fixed potential localization issues and added maven plugin to prevent it 
(ForbiddenAPI)
-- Fixed issues with the BRAT corpus reader
-- Deprecated GIS class, will be removed in a future 1.8.x release
-
-A detailed list of the issues related to this release can be found in the 
release
-notes.&lt;/pre&gt;
+removed. Now Java 1.8 is required.&lt;/p&gt;
 &lt;/div&gt;
+&lt;div class=&quot;paragraph&quot;&gt;
+&lt;p&gt;Additionally, the release contains the following noteworthy 
changes:&lt;/p&gt;
+&lt;/div&gt;
+&lt;div class=&quot;ulist&quot;&gt;
+&lt;ul&gt;
+&lt;li&gt;
+&lt;p&gt;Name Finder evaluation can now show a confusion matrix&lt;/p&gt;
+&lt;/li&gt;
+&lt;li&gt;
+&lt;p&gt;The default evaluation output contains more details&lt;/p&gt;
+&lt;/li&gt;
+&lt;li&gt;
+&lt;p&gt;Added a Language Model CLI tool&lt;/p&gt;
+&lt;/li&gt;
+&lt;li&gt;
+&lt;p&gt;Add Moses format support&lt;/p&gt;
+&lt;/li&gt;
+&lt;li&gt;
+&lt;p&gt;More refactoring and cleanup, specially in Machine Learning package 
and Dictionary&lt;/p&gt;
+&lt;/li&gt;
+&lt;li&gt;
+&lt;p&gt;Removed deprecated trainers from UIMA integration&lt;/p&gt;
+&lt;/li&gt;
+&lt;li&gt;
+&lt;p&gt;Fixed potential localization issues and added maven plugin to prevent 
it (ForbiddenAPI)&lt;/p&gt;
+&lt;/li&gt;
+&lt;li&gt;
+&lt;p&gt;Fixed issues with the BRAT corpus reader&lt;/p&gt;
+&lt;/li&gt;
+&lt;li&gt;
+&lt;p&gt;Deprecated GIS class, will be removed in a future 1.8.x 
release&lt;/p&gt;
+&lt;/li&gt;
+&lt;/ul&gt;
+&lt;/div&gt;
+&lt;div class=&quot;paragraph&quot;&gt;
+&lt;p&gt;A detailed list of the issues related to this release can be found in 
the release
+notes.&lt;/p&gt;
 &lt;/div&gt;
 &lt;/div&gt;
 &lt;/div&gt;
@@ -1134,8 +1213,8 @@ notes.&lt;/pre&gt;
 &lt;h2 id=&quot;requirements&quot;&gt;Requirements&lt;/h2&gt;
 &lt;div class=&quot;sectionbody&quot;&gt;
 &lt;div class=&quot;paragraph&quot;&gt;
-&lt;p&gt;Java 1.8 is required to run OpenNLP
-Maven 3.3.9 is required for building it&lt;/p&gt;
+&lt;p&gt;Java 1.8 is required to run OpenNLP.
+Maven 3.3.9 is required for building it.&lt;/p&gt;
 &lt;/div&gt;
 &lt;/div&gt;
 &lt;/div&gt;
@@ -1151,31 +1230,51 @@ Maven 3.3.9 is required for building it&lt;/p&gt;
 &lt;/div&gt;
 &lt;/div&gt;
 &lt;div class=&quot;paragraph&quot;&gt;
-&lt;p&gt;The results of the build will be placed  in:
-   opennlp-distr/target/apache-opennlp-1.7.1-bin.tar-gz (or .zip)&lt;/p&gt;
+&lt;p&gt;The results of the build will be placed in:
+&lt;em&gt;opennlp-distr/target/apache-opennlp-1.7.1-bin.tar.gz&lt;/em&gt;
+(or &lt;em&gt;.zip&lt;/em&gt;)&lt;/p&gt;
 &lt;/div&gt;
+&lt;/div&gt;
+&lt;/div&gt;
+&lt;div class=&quot;sect1&quot;&gt;
+&lt;h2 id=&quot;what_is_new_in_apache_opennlp_1_7_1&quot;&gt;What is new in 
Apache OpenNLP 1.7.1&lt;/h2&gt;
+&lt;div class=&quot;sectionbody&quot;&gt;
 &lt;div class=&quot;paragraph&quot;&gt;
-&lt;p&gt;What is new in Apache OpenNLP 1.7.1&lt;/p&gt;
+&lt;p&gt;This release introduces many new features, improvements and bug 
fixes.&lt;/p&gt;
 &lt;/div&gt;
-&lt;div class=&quot;listingblock&quot;&gt;
-&lt;div class=&quot;content&quot;&gt;
-&lt;pre&gt;This release introduces many new features, improvements and bug 
fixes.
-
-Additionally the release contains the following noteworthy changes:
-
-- Travis CI Integration
-- Added support to LETSMT format
-- All stdout can be disabled during training via verbose parameter
-- Improved and extended evaluation tests
-- Refactoring and cleanup of code base
-- Code fully migrated to Java 8
-- Added an improved GitHub README page
-
-For a complete list of fixed bugs and improvements please see the 
RELEASE_NOTES file included in the distribution.
-
-
---The Apache OpenNLP Team&lt;/pre&gt;
+&lt;div class=&quot;paragraph&quot;&gt;
+&lt;p&gt;Additionally, the release contains the following noteworthy 
changes:&lt;/p&gt;
 &lt;/div&gt;
+&lt;div class=&quot;ulist&quot;&gt;
+&lt;ul&gt;
+&lt;li&gt;
+&lt;p&gt;Travis CI Integration&lt;/p&gt;
+&lt;/li&gt;
+&lt;li&gt;
+&lt;p&gt;Added support to LETSMT format&lt;/p&gt;
+&lt;/li&gt;
+&lt;li&gt;
+&lt;p&gt;All stdout can be disabled during training via verbose 
parameter&lt;/p&gt;
+&lt;/li&gt;
+&lt;li&gt;
+&lt;p&gt;Improved and extended evaluation tests&lt;/p&gt;
+&lt;/li&gt;
+&lt;li&gt;
+&lt;p&gt;Refactoring and cleanup of code base&lt;/p&gt;
+&lt;/li&gt;
+&lt;li&gt;
+&lt;p&gt;Code fully migrated to Java 8&lt;/p&gt;
+&lt;/li&gt;
+&lt;li&gt;
+&lt;p&gt;Added an improved GitHub README page&lt;/p&gt;
+&lt;/li&gt;
+&lt;/ul&gt;
+&lt;/div&gt;
+&lt;div class=&quot;paragraph&quot;&gt;
+&lt;p&gt;For a complete list of fixed bugs and improvements please see the 
RELEASE_NOTES file included in the distribution.&lt;/p&gt;
+&lt;/div&gt;
+&lt;div class=&quot;paragraph&quot;&gt;
+&lt;p&gt;--The Apache OpenNLP Team&lt;/p&gt;
 &lt;/div&gt;
 &lt;/div&gt;
 &lt;/div&gt;
@@ -1187,7 +1286,9 @@ For a complete list of fixed bugs and improvements please 
see the RELEASE_NOTES
       <pubDate>Sat, 31 Dec 2016 00:00:00 +0000</pubDate>
       <guid isPermaLink="false">news/release-170.html</guid>
        <description>
-       &lt;div class=&quot;paragraph&quot;&gt;
+       &lt;div id=&quot;preamble&quot;&gt;
+&lt;div class=&quot;sectionbody&quot;&gt;
+&lt;div class=&quot;paragraph&quot;&gt;
 &lt;p&gt;The Apache OpenNLP team is pleased to announce the release of version 
1.7.0 of Apache OpenNLP.&lt;/p&gt;
 &lt;/div&gt;
 &lt;div class=&quot;paragraph&quot;&gt;
@@ -1202,6 +1303,11 @@ For a complete list of fixed bugs and improvements 
please see the RELEASE_NOTES
 &lt;div class=&quot;paragraph&quot;&gt;
 &lt;p&gt;The OpenNLP library is distributed by Maven Central as well. See the 
Maven Dependency page for more details: &lt;a 
href=&quot;https://opennlp.apache.org/maven-dependency.html&quot; 
class=&quot;bare&quot;&gt;https://opennlp.apache.org/maven-dependency.html&lt;/a&gt;&lt;/p&gt;
 &lt;/div&gt;
+&lt;/div&gt;
+&lt;/div&gt;
+&lt;div class=&quot;sect1&quot;&gt;
+&lt;h2 id=&quot;what_is_new_in_apache_opennlp_1_7_0&quot;&gt;What is new in 
Apache OpenNLP 1.7.0&lt;/h2&gt;
+&lt;div class=&quot;sectionbody&quot;&gt;
 &lt;div class=&quot;paragraph&quot;&gt;
 &lt;p&gt;This release introduces many new features, improvements and bug 
fixes. The API has been improved for a better consistency and deprecated 
methods were removed. Now Java 1.8 and Maven 3.3.9 are required.&lt;/p&gt;
 &lt;/div&gt;
@@ -1229,7 +1335,7 @@ For a complete list of fixed bugs and improvements please 
see the RELEASE_NOTES
 &lt;p&gt;A Naive Bayesian Classifier implementation was added&lt;/p&gt;
 &lt;/li&gt;
 &lt;li&gt;
-&lt;p&gt;Morofologik addon is now included&lt;/p&gt;
+&lt;p&gt;Morfologik addon is now included&lt;/p&gt;
 &lt;/li&gt;
 &lt;li&gt;
 &lt;p&gt;Added a language model component&lt;/p&gt;
@@ -1241,8 +1347,7 @@ For a complete list of fixed bugs and improvements please 
see the RELEASE_NOTES
 &lt;p&gt;Added a supervised statistical lemmatizer.&lt;/p&gt;
 &lt;/li&gt;
 &lt;li&gt;
-&lt;p&gt;The lemmatizer component API has been entirely rewritten. The changes 
in
-the previously existing Dictionary-based lemmatizer are not backward 
compatible.&lt;/p&gt;
+&lt;p&gt;The lemmatizer component API has been entirely rewritten. The changes 
in the previously existing Dictionary-based lemmatizer are not backward 
compatible.&lt;/p&gt;
 &lt;/li&gt;
 &lt;/ul&gt;
 &lt;/div&gt;
@@ -1255,6 +1360,8 @@ notes.&lt;/p&gt;
 &lt;/div&gt;
 &lt;div class=&quot;paragraph&quot;&gt;
 &lt;p&gt;--The Apache OpenNLP Team&lt;/p&gt;
+&lt;/div&gt;
+&lt;/div&gt;
 &lt;/div&gt;
        </description>
     </item>
diff --git a/get-involved.html b/get-involved.html
index b5a7e813..bfd638f0 100644
--- a/get-involved.html
+++ b/get-involved.html
@@ -243,17 +243,17 @@ issues please post them to the JIRA pages and not to this 
list. This list is mai
 <div class="ulist">
 <ul>
 <li>
-<p>Create a new issue in the <a 
href="https://issues.apache.org/jira/browse/OPENNLP";>Apache OpenNLP JIRA</a>. 
Please describe the problem or improvement in the body of the issue. For larger 
issues, please first contact the developer mailing list and describe the 
problem.</p>
+<p>Create a new issue in the Apache OpenNLP <a 
href="https://issues.apache.org/jira/browse/OPENNLP"; target="_blank" 
rel="noopener">JIRA</a>. Please describe the problem or improvement in the body 
of the issue. For larger issues, please first contact the developer mailing 
list and describe the problem.</p>
 </li>
 <li>
-<p>Next, create a pull request in <a 
href="https://github.com/apache/opennlp/pulls";>GitHub</a>.</p>
+<p>Next, create a pull request in <a 
href="https://github.com/apache/opennlp/pulls"; target="_blank" 
rel="noopener">GitHub</a>.</p>
 </li>
 </ul>
 </div>
 <div class="paragraph">
 <p>Bigger contributions can eventually only be accepted when an
-<a href="https://www.apache.org/licenses/icla.txt";>ICLA</a>, <a 
href="https://www.apache.org/licenses/cla-corporate.txt";>CCLA</a>
-or <a href="https://www.apache.org/licenses/software-grant.txt";>software 
grant</a> is on file.</p>
+<a href="https://apache.org/licenses/icla.pdf"; target="_blank" 
rel="noopener">ICLA</a>, <a 
href="https://www.apache.org/licenses/cla-corporate.txt"; target="_blank" 
rel="noopener">CCLA</a>
+or <a href="https://www.apache.org/licenses/software-grant.txt"; 
target="_blank" rel="noopener">software grant</a> is on file.</p>
 </div>
 <div class="paragraph">
 <p>Contributors who have a history of successful participation are invited to 
join
@@ -265,7 +265,7 @@ the project as a committer from the <a 
href="https://incubator.apache.org/guides
 <h2 id="open_tasks">Open Tasks</h2>
 <div class="sectionbody">
 <div class="paragraph">
-<p>Please see the Apache OpenNLP <a 
href="https://issues.apache.org/jira/browse/OPENNLP";>JIRA</a> for a list of 
tasks. If you would like to work on a task, please email the developers mailing 
list and request to do so. You will then be assigned the issue in JIRA.</p>
+<p>Please see the Apache OpenNLP <a 
href="https://issues.apache.org/jira/browse/OPENNLP"; target="_blank" 
rel="noopener">JIRA</a> for a list of tasks. If you would like to work on a 
task, please email the developers mailing list and request to do so. You will 
then be assigned the issue in JIRA.</p>
 </div>
 </div>
 </div>
diff --git a/mailing-lists.html b/mailing-lists.html
index ac873455..4e1229b6 100644
--- a/mailing-lists.html
+++ b/mailing-lists.html
@@ -217,7 +217,7 @@ to the issue tracker for the project.</p></td>
 </tr>
 <tr>
 <td class="tableblock halign-left valign-top"><p class="tableblock">Issues 
Mailing List</p></td>
-<td class="tableblock halign-left valign-top"><p class="tableblock">This list 
follows changes and posts to JIRA, the projects bug tracking system.  If you 
have any
+<td class="tableblock halign-left valign-top"><p class="tableblock">This list 
follows changes and posts to <a 
href="https://issues.apache.org/jira/browse/OPENNLP";>JIRA</a>, the projects bug 
tracking system.  If you have any
 issues please post them to the JIRA pages and not to this list. This list is 
mainly for developers to keep track of changes and issues to be resolved; 
however, any changes should be posted to the JIRA pages and <em>not</em> 
<em>directly</em> to this mailing list.</p></td>
 <td class="tableblock halign-left valign-top"><p class="tableblock"><a 
href="mailto:[email protected]";>Subscribe</a></p></td>
 <td class="tableblock halign-left valign-top"><p class="tableblock"><a 
href="mailto:[email protected]";>Unsubscribe</a></p></td>
diff --git a/maven-dependency.html b/maven-dependency.html
index b70b2f1d..4f3205ef 100644
--- a/maven-dependency.html
+++ b/maven-dependency.html
@@ -179,13 +179,9 @@ body {
 <div class="sectionbody">
 <div class="paragraph">
 <p>Apache OpenNLP is also distributed via the Maven Central Repository and
-the maven artifacts are located <a 
href="https://repo1.maven.org/maven2/org/apache/opennlp/";>here</a>.</p>
-</div>
-<div class="paragraph">
-<p>The Apache OpenNLP project publishes the library, javadoc and source code 
jars.</p>
-</div>
-<div class="paragraph">
-<p>To use OpenNLP in your project specify exactly one of the following 
dependencies,
+the maven artifacts are located <a 
href="https://repo1.maven.org/maven2/org/apache/opennlp/";>here</a>.
+The Apache OpenNLP project publishes the library, javadoc and source code jars.
+To use OpenNLP in your project, specify exactly one of the following 
dependencies,
 all transient dependencies are resolved automatically.</p>
 </div>
 </div>
diff --git a/news/release-170.html b/news/release-170.html
index 691ce3d9..4b7216bc 100644
--- a/news/release-170.html
+++ b/news/release-170.html
@@ -175,7 +175,9 @@ body {
 <div class="container">
     <h1 class="title">Apache OpenNLP 1.7.0 released</h1>
 
-    <div class="paragraph">
+    <div id="preamble">
+<div class="sectionbody">
+<div class="paragraph">
 <p>The Apache OpenNLP team is pleased to announce the release of version 1.7.0 
of Apache OpenNLP.</p>
 </div>
 <div class="paragraph">
@@ -190,6 +192,11 @@ body {
 <div class="paragraph">
 <p>The OpenNLP library is distributed by Maven Central as well. See the Maven 
Dependency page for more details: <a 
href="https://opennlp.apache.org/maven-dependency.html"; 
class="bare">https://opennlp.apache.org/maven-dependency.html</a></p>
 </div>
+</div>
+</div>
+<div class="sect1">
+<h2 id="what_is_new_in_apache_opennlp_1_7_0">What is new in Apache OpenNLP 
1.7.0</h2>
+<div class="sectionbody">
 <div class="paragraph">
 <p>This release introduces many new features, improvements and bug fixes. The 
API has been improved for a better consistency and deprecated methods were 
removed. Now Java 1.8 and Maven 3.3.9 are required.</p>
 </div>
@@ -217,7 +224,7 @@ body {
 <p>A Naive Bayesian Classifier implementation was added</p>
 </li>
 <li>
-<p>Morofologik addon is now included</p>
+<p>Morfologik addon is now included</p>
 </li>
 <li>
 <p>Added a language model component</p>
@@ -229,8 +236,7 @@ body {
 <p>Added a supervised statistical lemmatizer.</p>
 </li>
 <li>
-<p>The lemmatizer component API has been entirely rewritten. The changes in
-the previously existing Dictionary-based lemmatizer are not backward 
compatible.</p>
+<p>The lemmatizer component API has been entirely rewritten. The changes in 
the previously existing Dictionary-based lemmatizer are not backward 
compatible.</p>
 </li>
 </ul>
 </div>
@@ -243,6 +249,8 @@ notes.</p>
 </div>
 <div class="paragraph">
 <p>--The Apache OpenNLP Team</p>
+</div>
+</div>
 </div>
 
     <p><em>31 December 2016</em></p>
diff --git a/news/release-171.html b/news/release-171.html
index c116d687..7244af55 100644
--- a/news/release-171.html
+++ b/news/release-171.html
@@ -198,8 +198,8 @@ body {
 <h2 id="requirements">Requirements</h2>
 <div class="sectionbody">
 <div class="paragraph">
-<p>Java 1.8 is required to run OpenNLP
-Maven 3.3.9 is required for building it</p>
+<p>Java 1.8 is required to run OpenNLP.
+Maven 3.3.9 is required for building it.</p>
 </div>
 </div>
 </div>
@@ -215,31 +215,51 @@ Maven 3.3.9 is required for building it</p>
 </div>
 </div>
 <div class="paragraph">
-<p>The results of the build will be placed  in:
-   opennlp-distr/target/apache-opennlp-1.7.1-bin.tar-gz (or .zip)</p>
+<p>The results of the build will be placed in:
+<em>opennlp-distr/target/apache-opennlp-1.7.1-bin.tar.gz</em>
+(or <em>.zip</em>)</p>
 </div>
+</div>
+</div>
+<div class="sect1">
+<h2 id="what_is_new_in_apache_opennlp_1_7_1">What is new in Apache OpenNLP 
1.7.1</h2>
+<div class="sectionbody">
 <div class="paragraph">
-<p>What is new in Apache OpenNLP 1.7.1</p>
+<p>This release introduces many new features, improvements and bug fixes.</p>
 </div>
-<div class="listingblock">
-<div class="content">
-<pre>This release introduces many new features, improvements and bug fixes.
-
-Additionally the release contains the following noteworthy changes:
-
-- Travis CI Integration
-- Added support to LETSMT format
-- All stdout can be disabled during training via verbose parameter
-- Improved and extended evaluation tests
-- Refactoring and cleanup of code base
-- Code fully migrated to Java 8
-- Added an improved GitHub README page
-
-For a complete list of fixed bugs and improvements please see the 
RELEASE_NOTES file included in the distribution.
-
-
---The Apache OpenNLP Team</pre>
+<div class="paragraph">
+<p>Additionally, the release contains the following noteworthy changes:</p>
+</div>
+<div class="ulist">
+<ul>
+<li>
+<p>Travis CI Integration</p>
+</li>
+<li>
+<p>Added support to LETSMT format</p>
+</li>
+<li>
+<p>All stdout can be disabled during training via verbose parameter</p>
+</li>
+<li>
+<p>Improved and extended evaluation tests</p>
+</li>
+<li>
+<p>Refactoring and cleanup of code base</p>
+</li>
+<li>
+<p>Code fully migrated to Java 8</p>
+</li>
+<li>
+<p>Added an improved GitHub README page</p>
+</li>
+</ul>
 </div>
+<div class="paragraph">
+<p>For a complete list of fixed bugs and improvements please see the 
RELEASE_NOTES file included in the distribution.</p>
+</div>
+<div class="paragraph">
+<p>--The Apache OpenNLP Team</p>
 </div>
 </div>
 </div>
diff --git a/news/release-172.html b/news/release-172.html
index fa299d25..3e5a6d27 100644
--- a/news/release-172.html
+++ b/news/release-172.html
@@ -214,30 +214,53 @@ Maven 3.3.9 is required for building it</p>
 <p>The results of the build will be placed  in:
     opennlp-distr/target/apache-opennlp-1.7.2-bin.tar-gz (or .zip)</p>
 </div>
-<div class="paragraph">
-<p>What is new in Apache OpenNLP 1.7.2</p>
 </div>
-<div class="listingblock">
-<div class="content">
-<pre>This release introduces many new features, improvements and bug fixes. 
The API
+</div>
+<div class="sect1">
+<h2 id="what_is_new_in_apache_opennlp_1_7_2">What is new in Apache OpenNLP 
1.7.2</h2>
+<div class="sectionbody">
+<div class="paragraph">
+<p>This release introduces many new features, improvements and bug fixes. The 
API
 has been improved for a better consistency and 1.4 deprecated methods were
-removed. Now Java 1.8 is required.
-
-Additionally the release contains the following noteworthy changes:
-
-- Name Finder evaluation can now show a confusion matrix
-- The default evaluation output contains more details
-- Added a Language Model CLI tool
-- Add Moses format support
-- More refactoring and cleanup, specially in Machine Learning package and 
Dictionary
-- Removed deprecated trainers from UIMA integration
-- Fixed potential localization issues and added maven plugin to prevent it 
(ForbiddenAPI)
-- Fixed issues with the BRAT corpus reader
-- Deprecated GIS class, will be removed in a future 1.8.x release
-
-A detailed list of the issues related to this release can be found in the 
release
-notes.</pre>
+removed. Now Java 1.8 is required.</p>
+</div>
+<div class="paragraph">
+<p>Additionally, the release contains the following noteworthy changes:</p>
+</div>
+<div class="ulist">
+<ul>
+<li>
+<p>Name Finder evaluation can now show a confusion matrix</p>
+</li>
+<li>
+<p>The default evaluation output contains more details</p>
+</li>
+<li>
+<p>Added a Language Model CLI tool</p>
+</li>
+<li>
+<p>Add Moses format support</p>
+</li>
+<li>
+<p>More refactoring and cleanup, specially in Machine Learning package and 
Dictionary</p>
+</li>
+<li>
+<p>Removed deprecated trainers from UIMA integration</p>
+</li>
+<li>
+<p>Fixed potential localization issues and added maven plugin to prevent it 
(ForbiddenAPI)</p>
+</li>
+<li>
+<p>Fixed issues with the BRAT corpus reader</p>
+</li>
+<li>
+<p>Deprecated GIS class, will be removed in a future 1.8.x release</p>
+</li>
+</ul>
 </div>
+<div class="paragraph">
+<p>A detailed list of the issues related to this release can be found in the 
release
+notes.</p>
 </div>
 </div>
 </div>
diff --git a/news/release-180.html b/news/release-180.html
index def51bc4..e4ff9134 100644
--- a/news/release-180.html
+++ b/news/release-180.html
@@ -203,12 +203,14 @@ body {
 </div>
 </div>
 </div>
-<h1 id="whats_new_in_apache_opennlp_1_8_0" class="sect0">What&#8217;s new in 
Apache OpenNLP 1.8.0</h1>
+<div class="sect1">
+<h2 id="whats_new_in_apache_opennlp_1_8_0">What&#8217;s new in Apache OpenNLP 
1.8.0</h2>
+<div class="sectionbody">
 <div class="paragraph">
 <p>This release introduces many new features, improvements and bug fixes. The 
API has been improved for a better consistency and many deprecated methods were 
removed. Java 1.8 is required.</p>
 </div>
 <div class="paragraph">
-<p>Additionally the release contains the following noteworthy changes:</p>
+<p>Additionally, the release contains the following noteworthy changes:</p>
 </div>
 <div class="ulist">
 <ul>
@@ -267,6 +269,8 @@ body {
 </div>
 <div class="paragraph">
 <p>--The Apache OpenNLP Team</p>
+</div>
+</div>
 </div>
 
     <p><em>19 May 2017</em></p>
diff --git a/news/release-181.html b/news/release-181.html
index 38ed3ace..7361cc97 100644
--- a/news/release-181.html
+++ b/news/release-181.html
@@ -203,12 +203,14 @@ body {
 </div>
 </div>
 </div>
-<h1 id="whats_new_in_apache_opennlp_1_8_1" class="sect0">What&#8217;s new in 
Apache OpenNLP 1.8.1</h1>
+<div class="sect1">
+<h2 id="whats_new_in_apache_opennlp_1_8_1">What&#8217;s new in Apache OpenNLP 
1.8.1</h2>
+<div class="sectionbody">
 <div class="paragraph">
 <p>This release introduces many new features, improvements and bug fixes. The 
API has been improved for a better consistency and many deprecated methods were 
removed. Java 1.8 is required.</p>
 </div>
 <div class="paragraph">
-<p>Additionally the release contains the following noteworthy changes:</p>
+<p>Additionally, the release contains the following noteworthy changes:</p>
 </div>
 <div class="ulist">
 <ul>
@@ -255,6 +257,8 @@ body {
 </div>
 <div class="paragraph">
 <p>--The Apache OpenNLP Team</p>
+</div>
+</div>
 </div>
 
     <p><em>08 July 2017</em></p>
diff --git a/news/release-182.html b/news/release-182.html
index 1186e500..4555838d 100644
--- a/news/release-182.html
+++ b/news/release-182.html
@@ -203,7 +203,9 @@ body {
 </div>
 </div>
 </div>
-<h1 id="whats_new_in_apache_opennlp_1_8_2" class="sect0">What&#8217;s new in 
Apache OpenNLP 1.8.2</h1>
+<div class="sect1">
+<h2 id="whats_new_in_apache_opennlp_1_8_2">What&#8217;s new in Apache OpenNLP 
1.8.2</h2>
+<div class="sectionbody">
 <div class="paragraph">
 <p>This release introduces some minor improvements and bug fixes. Java 1.8 is 
required.</p>
 </div>
@@ -222,6 +224,8 @@ body {
 </div>
 <div class="paragraph">
 <p>--The Apache OpenNLP Team</p>
+</div>
+</div>
 </div>
 
     <p><em>15 September 2017</em></p>
diff --git a/news/release-183.html b/news/release-183.html
index ec21fca1..19cef849 100644
--- a/news/release-183.html
+++ b/news/release-183.html
@@ -194,12 +194,14 @@ body {
 </div>
 </div>
 </div>
-<h1 id="whats_new_in_apache_opennlp_1_8_3" class="sect0">What&#8217;s new in 
Apache OpenNLP 1.8.3</h1>
+<div class="sect1">
+<h2 id="whats_new_in_apache_opennlp_1_8_3">What&#8217;s new in Apache OpenNLP 
1.8.3</h2>
+<div class="sectionbody">
 <div class="paragraph">
 <p>This release introduces new features, improvements and bug fixes. Java 1.8 
and Maven 3.3.9 are required.</p>
 </div>
 <div class="paragraph">
-<p>Additionally the release contains the following noteworthy changes:
+<p>Additionally, the release contains the following noteworthy changes:
 - New experimental API for Word Vectors and support for Glove vector files
 - Code cleanups and addition of test cases
 - Java 9 module name is now set to org.apache.opennlp.tools
@@ -213,6 +215,8 @@ body {
 </div>
 <div class="paragraph">
 <p>--The Apache OpenNLP Team</p>
+</div>
+</div>
 </div>
 
     <p><em>27 October 2017</em></p>
diff --git a/news/release-184.html b/news/release-184.html
index 98efdafb..4d4466e2 100644
--- a/news/release-184.html
+++ b/news/release-184.html
@@ -194,12 +194,14 @@ body {
 </div>
 </div>
 </div>
-<h1 id="whats_new_in_apache_opennlp_1_8_4" class="sect0">What&#8217;s new in 
Apache OpenNLP 1.8.4</h1>
+<div class="sect1">
+<h2 id="whats_new_in_apache_opennlp_1_8_4">What&#8217;s new in Apache OpenNLP 
1.8.4</h2>
+<div class="sectionbody">
 <div class="paragraph">
 <p>This release introduces new features, improvements and bug fixes. Java 1.8 
and Maven 3.3.9 are required.</p>
 </div>
 <div class="paragraph">
-<p>Additionally the release contains the following changes:</p>
+<p>Additionally, the release contains the following changes:</p>
 </div>
 <div class="ulist">
 <ul>
@@ -237,6 +239,8 @@ body {
 </div>
 <div class="paragraph">
 <p>--The Apache OpenNLP Team</p>
+</div>
+</div>
 </div>
 
     <p><em>24 December 2017</em></p>
diff --git a/news/release-190.html b/news/release-190.html
index 8b0916f7..7c2dec9a 100644
--- a/news/release-190.html
+++ b/news/release-190.html
@@ -194,12 +194,14 @@ body {
 </div>
 </div>
 </div>
-<h1 id="whats_new_in_apache_opennlp_1_9_0" class="sect0">What&#8217;s new in 
Apache OpenNLP 1.9.0</h1>
+<div class="sect1">
+<h2 id="whats_new_in_apache_opennlp_1_9_0">What&#8217;s new in Apache OpenNLP 
1.9.0</h2>
+<div class="sectionbody">
 <div class="paragraph">
 <p>This release introduces new features, improvements and bug fixes. Java 1.8 
and Maven 3.3.9 are required.</p>
 </div>
 <div class="paragraph">
-<p>Additionally the release contains the following changes:</p>
+<p>Additionally, the release contains the following changes:</p>
 </div>
 <div class="ulist">
 <ul>
@@ -243,6 +245,8 @@ body {
 </div>
 <div class="paragraph">
 <p>--The Apache OpenNLP Team</p>
+</div>
+</div>
 </div>
 
     <p><em>02 July 2018</em></p>
diff --git a/news/release-191.html b/news/release-191.html
index 9417feb6..8e4500f3 100644
--- a/news/release-191.html
+++ b/news/release-191.html
@@ -194,7 +194,9 @@ body {
 </div>
 </div>
 </div>
-<h1 id="whats_new_in_apache_opennlp_1_9_1" class="sect0">What&#8217;s new in 
Apache OpenNLP 1.9.1</h1>
+<div class="sect1">
+<h2 id="whats_new_in_apache_opennlp_1_9_1">What&#8217;s new in Apache OpenNLP 
1.9.1</h2>
+<div class="sectionbody">
 <div class="ulist">
 <ul>
 <li>
@@ -237,6 +239,8 @@ body {
 </div>
 <div class="paragraph">
 <p>--The Apache OpenNLP Team</p>
+</div>
+</div>
 </div>
 
     <p><em>31 December 2018</em></p>
diff --git a/news/release-192.html b/news/release-192.html
index 77761a40..1c19cf12 100644
--- a/news/release-192.html
+++ b/news/release-192.html
@@ -194,7 +194,9 @@ body {
 </div>
 </div>
 </div>
-<h1 id="whats_new_in_apache_opennlp_1_9_2" class="sect0">What&#8217;s new in 
Apache OpenNLP 1.9.2</h1>
+<div class="sect1">
+<h2 id="whats_new_in_apache_opennlp_1_9_2">What&#8217;s new in Apache OpenNLP 
1.9.2</h2>
+<div class="sectionbody">
 <div class="ulist">
 <ul>
 <li>
@@ -219,6 +221,8 @@ body {
 </div>
 <div class="paragraph">
 <p>--The Apache OpenNLP Team</p>
+</div>
+</div>
 </div>
 
     <p><em>26 December 2019</em></p>
diff --git a/news/release-193.html b/news/release-193.html
index f31768a3..624b5cbd 100644
--- a/news/release-193.html
+++ b/news/release-193.html
@@ -194,7 +194,9 @@ body {
 </div>
 </div>
 </div>
-<h1 id="whats_new_in_apache_opennlp_1_9_3" class="sect0">What&#8217;s new in 
Apache OpenNLP 1.9.3</h1>
+<div class="sect1">
+<h2 id="whats_new_in_apache_opennlp_1_9_3">What&#8217;s new in Apache OpenNLP 
1.9.3</h2>
+<div class="sectionbody">
 <div class="ulist">
 <ul>
 <li>
@@ -225,6 +227,8 @@ body {
 </div>
 <div class="paragraph">
 <p>--The Apache OpenNLP Team</p>
+</div>
+</div>
 </div>
 
     <p><em>31 July 2020</em></p>
diff --git a/news/release-194.html b/news/release-194.html
index eb9ee837..19986f20 100644
--- a/news/release-194.html
+++ b/news/release-194.html
@@ -194,7 +194,9 @@ body {
 </div>
 </div>
 </div>
-<h1 id="whats_new_in_apache_opennlp_1_9_4" class="sect0">What&#8217;s new in 
Apache OpenNLP 1.9.4</h1>
+<div class="sect1">
+<h2 id="whats_new_in_apache_opennlp_1_9_4">What&#8217;s new in Apache OpenNLP 
1.9.4</h2>
+<div class="sectionbody">
 <div class="ulist">
 <ul>
 <li>
@@ -219,6 +221,8 @@ body {
 </div>
 <div class="paragraph">
 <p>--The Apache OpenNLP Team</p>
+</div>
+</div>
 </div>
 
     <p><em>03 November 2021</em></p>
diff --git a/news/release-200.html b/news/release-200.html
index 2fbcbff4..ca2dd257 100644
--- a/news/release-200.html
+++ b/news/release-200.html
@@ -194,7 +194,9 @@ body {
 </div>
 </div>
 </div>
-<h1 id="whats_new_in_apache_opennlp_2_0_0" class="sect0">What&#8217;s new in 
Apache OpenNLP 2.0.0</h1>
+<div class="sect1">
+<h2 id="whats_new_in_apache_opennlp_2_0_0">What&#8217;s new in Apache OpenNLP 
2.0.0</h2>
+<div class="sectionbody">
 <div class="ulist">
 <ul>
 <li>
@@ -230,10 +232,12 @@ body {
 <p>A detailed list of the issues related to this release can be found in the 
release notes.</p>
 </div>
 <div class="paragraph">
-<p>For a complete list of fixed bugs and improvements please see the 
README.html file included in the distribution.</p>
+<p>For a complete list of fixed bugs and improvements please see the 
<em>README.html</em> file included in the distribution.</p>
 </div>
 <div class="paragraph">
 <p>--The Apache OpenNLP Team</p>
+</div>
+</div>
 </div>
 
     <p><em>05 June 2022</em></p>
diff --git a/news/release-210.html b/news/release-210.html
index 6731e7c7..a08737ea 100644
--- a/news/release-210.html
+++ b/news/release-210.html
@@ -194,7 +194,9 @@ body {
 </div>
 </div>
 </div>
-<h1 id="whats_new_in_apache_opennlp_2_1_0" class="sect0">What&#8217;s new in 
Apache OpenNLP 2.1.0</h1>
+<div class="sect1">
+<h2 id="whats_new_in_apache_opennlp_2_1_0">What&#8217;s new in Apache OpenNLP 
2.1.0</h2>
+<div class="sectionbody">
 <div class="ulist">
 <ul>
 <li>
@@ -225,6 +227,8 @@ body {
 </div>
 <div class="paragraph">
 <p>--The Apache OpenNLP Team</p>
+</div>
+</div>
 </div>
 
     <p><em>23 November 2022</em></p>
diff --git a/news/release-211.html b/news/release-211.html
index 434519fc..4747a64c 100644
--- a/news/release-211.html
+++ b/news/release-211.html
@@ -194,7 +194,9 @@ body {
 </div>
 </div>
 </div>
-<h1 id="whats_new_in_apache_opennlp_2_1_1" class="sect0">What&#8217;s new in 
Apache OpenNLP 2.1.1</h1>
+<div class="sect1">
+<h2 id="whats_new_in_apache_opennlp_2_1_1">What&#8217;s new in Apache OpenNLP 
2.1.1</h2>
+<div class="sectionbody">
 <div class="paragraph">
 <p>This version contains improvements to unit tests, code quality, JavaDocs, 
and a few minor fixes.</p>
 </div>
@@ -203,6 +205,8 @@ body {
 </div>
 <div class="paragraph">
 <p>--The Apache OpenNLP Team</p>
+</div>
+</div>
 </div>
 
     <p><em>23 February 2023</em></p>
diff --git a/news/release-220.html b/news/release-220.html
index 8a164f60..567ac382 100644
--- a/news/release-220.html
+++ b/news/release-220.html
@@ -194,7 +194,9 @@ body {
 </div>
 </div>
 </div>
-<h1 id="whats_new_in_apache_opennlp_2_2_0" class="sect0">What&#8217;s new in 
Apache OpenNLP 2.2.0</h1>
+<div class="sect1">
+<h2 id="whats_new_in_apache_opennlp_2_2_0">What&#8217;s new in Apache OpenNLP 
2.2.0</h2>
+<div class="sectionbody">
 <div class="paragraph">
 <p>This version contains improvements to logging by introducing SLF4J to 
replace logging using System.out. ONNX Runtime support for 
sentence-transformers was also introduced. This version also includes fixes for 
stemming, documentation, and unit tests.</p>
 </div>
@@ -203,6 +205,8 @@ body {
 </div>
 <div class="paragraph">
 <p>--The Apache OpenNLP Team</p>
+</div>
+</div>
 </div>
 
     <p><em>22 April 2023</em></p>
diff --git a/release-model.html b/release-model.html
index a6281796..b6d7b305 100644
--- a/release-model.html
+++ b/release-model.html
@@ -184,7 +184,7 @@ body {
 <p>Elect a release manager.</p>
 </li>
 <li>
-<p>Create a ticket for a new model release in JIRA. If you do not have 
permission to do so just ask to be given permissions on the mailing list.</p>
+<p>Create a ticket for a new model release in <a 
href="https://issues.apache.org/jira/browse/OPENNLP"; target="_blank" 
rel="noopener">JIRA</a>. If you do not have permission to do so just ask to be 
given permissions on the mailing list.</p>
 </li>
 </ul>
 </div>
@@ -199,11 +199,8 @@ body {
 <div class="ulist">
 <ul>
 <li>
-<p>Make sure you have your PGP key added to <a 
href="https://dist.apache.org/repos/dist/release/opennlp/KEYS"; 
class="bare">https://dist.apache.org/repos/dist/release/opennlp/KEYS</a> via SVN
+<p>Make sure you have your PGP key added to <a 
href="https://dist.apache.org/repos/dist/release/opennlp/KEYS"; class="bare" 
target="_blank" 
rel="noopener">https://dist.apache.org/repos/dist/release/opennlp/KEYS</a> via 
SVN
 If the key isn&#8217;t contained in this file, add your PGP key to the KEYS 
file:</p>
-</li>
-</ul>
-</div>
 <div class="listingblock">
 <div class="content">
 <pre>Examples of adding your key to this file:
@@ -213,21 +210,16 @@ If the key isn&#8217;t contained in this file, add your 
PGP key to the KEYS file
      &amp;&amp; gpg --armor --export &lt;your name&gt;) &gt;&gt; this 
file.</pre>
 </div>
 </div>
-<div class="ulist">
-<ul>
+</li>
 <li>
 <p>In a local temp folder, svn checkout the OpenNLP artifacts and update the 
KEYS file</p>
-</li>
-</ul>
-</div>
 <div class="listingblock">
 <div class="content">
 <pre>svn co https://dist.apache.org/repos/dist/release/opennlp/
 svn commit -m "Added Key for &lt;name&gt;" KEYS</pre>
 </div>
 </div>
-<div class="ulist">
-<ul>
+</li>
 <li>
 <p>Make sure you have your PGP key&#8217;s password.</p>
 </li>
@@ -259,23 +251,16 @@ svn commit -m "Added Key for &lt;name&gt;" KEYS</pre>
 <ul>
 <li>
 <p>Create sha512 checksums</p>
-</li>
-</ul>
-</div>
 <div class="listingblock">
 <div class="content">
 <pre># cd to model location
 for f in *; do   sha512sum "$f" &gt; "$f.sha512"; done</pre>
 </div>
 </div>
-<div class="ulist">
-<ul>
+</li>
 <li>
-<p>Create PGP signatures, see <a 
href="https://infra.apache.org/release-signing.html";>for details</a>.
+<p>Create PGP signatures, see <a 
href="https://infra.apache.org/release-signing.html"; target="_blank" 
rel="noopener">for details</a>.
 If you have multiple keys on your system, you might need to use 
<code>-u</code> to select the signing key.</p>
-</li>
-</ul>
-</div>
 <div class="listingblock">
 <div class="content">
 <pre># cd to model location
@@ -290,16 +275,12 @@ gpg --armor --output $f.asc --detach-sig $f
 done</pre>
 </div>
 </div>
-<div class="ulist">
-<ul>
+</li>
 <li>
 <p>Add README, NOTICE, LICENSE and CHANGES (if any)</p>
 </li>
 <li>
 <p>Create a folder in <code>dist/dev/models</code> in SVN</p>
-</li>
-</ul>
-</div>
 <div class="listingblock">
 <div class="content">
 <pre>svn co https://dist.apache.org/repos/dist/dev/opennlp/ dist-dev
@@ -308,6 +289,9 @@ done</pre>
 svn commit --username &lt;username&gt; -m "Adding Release Candidate for 
OpenNLP Models &lt;version&gt;"</pre>
 </div>
 </div>
+</li>
+</ul>
+</div>
 <div class="paragraph">
 <p>Check the dist/dev folder and if all looks well, open a VOTE but do 
<strong>not</strong> move the files to dist/release at this time.</p>
 </div>
@@ -320,7 +304,7 @@ svn commit --username &lt;username&gt; -m "Adding Release 
Candidate for OpenNLP
 <div class="ulist">
 <ul>
 <li>
-<p>The filenames of each model signify the model language, type, <a 
href="https://universaldependencies.org/";>Universal Dependency training data 
used</a>, and version numbers.</p>
+<p>The filenames of each model signify the model language, type, <a 
href="https://universaldependencies.org/"; target="_blank" 
rel="noopener">Universal Dependency training data</a> used, and version 
numbers.</p>
 </li>
 <li>
 <p>The filename format is 
<code>opennlp-[iso-language-code]-ud-[corpus]-[model-type]-[model-version]-[opennlp-version-used-for-training].bin</code>.</p>
@@ -333,8 +317,17 @@ svn commit --username &lt;username&gt; -m "Adding Release 
Candidate for OpenNLP
 </li>
 </ul>
 </div>
-<div class="paragraph">
-<p><strong>Note:</strong> If other training data is used, the abbreviation 
<code>ud</code> needs to be adjusted!</p>
+<div class="admonitionblock note">
+<table>
+<tr>
+<td class="icon">
+<div class="title">Note</div>
+</td>
+<td class="content">
+If other training data is used, the abbreviation <code>ud</code> needs to be 
adjusted!
+</td>
+</tr>
+</table>
 </div>
 </div>
 <div class="sect3">
@@ -359,11 +352,8 @@ svn commit --username &lt;username&gt; -m "Adding Release 
Candidate for OpenNLP
 <ul>
 <li>
 <p>Notify the developer mailing list of a new model vote. Be sure to replace 
all values in <code>[]</code> with the appropriate values.</p>
-</li>
-</ul>
-</div>
 <div class="paragraph">
-<p>Message Subject: [VOTE] Apache OpenNLP Models [version] Release 
Candidate</p>
+<p><em>Message Subject: [VOTE] Apache OpenNLP Models [version] Release 
Candidate</em></p>
 </div>
 <div class="listingblock">
 <div class="content">
@@ -392,6 +382,9 @@ The vote passes if at least three binding +1 votes are cast.
 Thanks!</pre>
 </div>
 </div>
+</li>
+</ul>
+</div>
 </div>
 </div>
 </div>
@@ -400,7 +393,7 @@ Thanks!</pre>
 <h2 id="after_a_successful_vote">After a Successful Vote</h2>
 <div class="sectionbody">
 <div class="paragraph">
-<p>The vote is successful if at least 3 +1 votes are received from OpenNLP PMC 
members after a minimum of 72 hours of sending the vote email.
+<p>The vote is successful if at least 3 <em>+1</em> votes are received from 
OpenNLP PMC members after a minimum of 72 hours of sending the vote email.
 Acknowledge the voting results on the mailing list in the VOTE thread.</p>
 </div>
 <div class="sect2">
@@ -429,7 +422,7 @@ svn commit --username &lt;username&gt; -m "Adding OpenNLP 
Models &lt;version&gt;
 <div class="sect2">
 <h3 id="update_the_website">Update the Website</h3>
 <div class="paragraph">
-<p>Update the  <a href="https://opennlp.apache.org/models.html";>website</a> 
once the new version appears in the Apache download mirrors (keep checking <a 
href="https://www.apache.org/dyn/closer.cgi/opennlp/models/"; 
class="bare">https://www.apache.org/dyn/closer.cgi/opennlp/models/</a> until 
you see something).</p>
+<p>Update the  <a href="https://opennlp.apache.org/models.html"; 
target="_blank" rel="noopener">website</a> once the new version appears in the 
Apache download mirrors (keep checking <a 
href="https://www.apache.org/dyn/closer.cgi/opennlp/models/"; class="bare" 
target="_blank" 
rel="noopener">https://www.apache.org/dyn/closer.cgi/opennlp/models/</a> until 
you see something).</p>
 </div>
 <div class="sect3">
 <h4 id="add_news_item">Add News Item</h4>
@@ -437,9 +430,6 @@ svn commit --username &lt;username&gt; -m "Adding OpenNLP 
Models &lt;version&gt;
 <ul>
 <li>
 <p>Add a news item in <code>news/model-{model-type}-{xyz}.ad</code> by copying 
the adjusted content:</p>
-</li>
-</ul>
-</div>
 <div class="listingblock">
 <div class="content">
 <pre>= &lt;MODEL_TYPE&gt; Models for Apache OpenNLP released
@@ -470,6 +460,9 @@ 
https://dist.apache.org/repos/dist/dev/opennlp/&lt;MODEL_TYPE&gt;-&lt;MODEL_VERS
 --The Apache OpenNLP Team</pre>
 </div>
 </div>
+</li>
+</ul>
+</div>
 </div>
 <div class="sect3">
 <h4 id="commit_website_changes">Commit Website Changes.</h4>
@@ -493,23 +486,17 @@ 
https://dist.apache.org/repos/dist/dev/opennlp/&lt;MODEL_TYPE&gt;-&lt;MODEL_VERS
 <div class="ulist">
 <ul>
 <li>
-<p>Log the new version at <a 
href="https://reporter.apache.org/addrelease.html?opennlp"; 
class="bare">https://reporter.apache.org/addrelease.html?opennlp</a>.</p>
+<p>Log the new version at <a 
href="https://reporter.apache.org/addrelease.html?opennlp"; class="bare" 
target="_blank" 
rel="noopener">https://reporter.apache.org/addrelease.html?opennlp</a>.</p>
 </li>
 <li>
 <p>Announce the new models on the OpenNLP Twitter.</p>
 </li>
 <li>
-<p>Announce the new models on the Apache OpenNLP blog at <a 
href="https://blogs.apache.org/opennlp/"; 
class="bare">https://blogs.apache.org/opennlp/</a>.</p>
-</li>
-<li>
-<p>Close the present release ticket in JIRA.</p>
+<p>Close the present release ticket in <a 
href="https://issues.apache.org/jira/browse/OPENNLP"; target="_blank" 
rel="noopener">JIRA</a>.</p>
 </li>
 <li>
 <p>Send announcement email to <a 
href="mailto:[email protected]";>[email protected]</a>, <a 
href="mailto:[email protected]";>[email protected]</a>, <a 
href="mailto:[email protected]";>[email protected]</a>.
 This needs to be done from your @apache.org email address or the email will 
bounce from the announce list.</p>
-</li>
-</ul>
-</div>
 <div class="listingblock">
 <div class="content">
 <pre>Title: [ANNOUNCE] OpenNLP Models &lt;version&gt; released
@@ -540,6 +527,9 @@ 
https://dist.apache.org/repos/dist/dev/opennlp/&lt;MODEL_TYPE&gt;-&lt;MODEL_VERS
 --The Apache OpenNLP Team</pre>
 </div>
 </div>
+</li>
+</ul>
+</div>
 </div>
 </div>
 </div>
diff --git a/release.html b/release.html
index 65e8bf90..e43dc97b 100644
--- a/release.html
+++ b/release.html
@@ -184,10 +184,10 @@ body {
 <p>Elect a release manager.</p>
 </li>
 <li>
-<p>Create a ticket for a new release in JIRA. If you do not have permission to 
do so just ask to be given permissions on the mailing list.</p>
+<p>Create a ticket for a new release in <a 
href="https://issues.apache.org/jira/browse/OPENNLP";>JIRA</a>. If you do not 
have permission to do so just ask to be given permissions on the mailing 
list.</p>
 </li>
 <li>
-<p>Review all of the JIRA issues associated with the release. All issues 
should be resolved and closed.</p>
+<p>Review all of the <a 
href="https://issues.apache.org/jira/browse/OPENNLP";>JIRA</a> issues associated 
with the release. All issues should be resolved and closed.</p>
 </li>
 <li>
 <p>Any issues assigned to the release that are not complete should be assigned 
to the next release. Any critical or blocker issues should be resolved on the 
mailing list. Discuss any issues that you are unsure of on the mailing list.</p>
@@ -213,9 +213,6 @@ Your KEYS will then be present in <a 
href="https://people.apache.org/keys/group/
 </li>
 <li>
 <p>Add your PGP key to the KEYS file:</p>
-</li>
-</ul>
-</div>
 <div class="listingblock">
 <div class="content">
 <pre>Examples of adding your key to this file:
@@ -225,26 +222,18 @@ Your KEYS will then be present in <a 
href="https://people.apache.org/keys/group/
      &amp;&amp; gpg --armor --export &lt;your name&gt;) &gt;&gt; this 
file.</pre>
 </div>
 </div>
-<div class="ulist">
-<ul>
+</li>
 <li>
 <p>In a local temp folder, svn checkout the OpenNLP artifacts and update the 
KEYS file</p>
-</li>
-</ul>
-</div>
 <div class="listingblock">
 <div class="content">
 <pre>svn co https://dist.apache.org/repos/dist/release/opennlp/
 svn commit -m"Added Key for &lt;name&gt;" KEYS</pre>
 </div>
 </div>
-<div class="ulist">
-<ul>
+</li>
 <li>
 <p>Create a maven <code>settings.xml</code> to publish to 
<code>repository.apache.org</code>. An example configuration:</p>
-</li>
-</ul>
-</div>
 <div class="listingblock">
 <div class="content">
 <pre>&lt;server&gt;
@@ -254,6 +243,9 @@ svn commit -m"Added Key for &lt;name&gt;" KEYS</pre>
 &lt;/server&gt;</pre>
 </div>
 </div>
+</li>
+</ul>
+</div>
 </div>
 </div>
 <div class="sect1">
@@ -354,7 +346,7 @@ Thanks!</pre>
 <h2 id="after_a_successful_vote">After a Successful Vote</h2>
 <div class="sectionbody">
 <div class="paragraph">
-<p>The vote is successful if at least 3 +1 votes are received from OpenNLP PMC 
members after a minimum of 72 hours of sending the vote email.
+<p>The vote is successful if at least 3 <em>+1</em> votes are received from 
OpenNLP PMC members after a minimum of 72 hours of sending the vote email.
 Acknowledge the voting results on the mailing list in the VOTE thread.</p>
 </div>
 <div class="sect2">
@@ -490,7 +482,7 @@ opennlp.next.version=</code></pre>
 <p>Announce the new version on the Apache OpenNLP blog at <a 
href="https://blogs.apache.org/opennlp/"; 
class="bare">https://blogs.apache.org/opennlp/</a>.</p>
 </li>
 <li>
-<p>Close the present release ticket in JIRA.</p>
+<p>Close the present release ticket in <a 
href="https://issues.apache.org/jira/browse/OPENNLP";>JIRA</a>.</p>
 </li>
 <li>
 <p>Send announcement email to <a 
href="mailto:[email protected]";>[email protected]</a>, <a 
href="mailto:[email protected]";>[email protected]</a>, <a 
href="mailto:[email protected]";>[email protected]</a>. This needs 
to be done from your @apache.org email address or the email will bounce from 
the announce list. Gmail forwarding can help here and is a snap to set up (<a 
href="https://gmailblog.blogspot.com/2009/07/send-mail-from-another-address-without.html";
 clas [...]
diff --git a/source-code.html b/source-code.html
index af410fd9..23222cda 100644
--- a/source-code.html
+++ b/source-code.html
@@ -184,16 +184,16 @@ body {
 <div class="ulist">
 <ul>
 <li>
-<p><a href="https://github.com/apache/opennlp";>Github opennlp</a></p>
+<p><a href="https://github.com/apache/opennlp"; target="_blank" 
rel="noopener">Github opennlp</a></p>
 </li>
 <li>
-<p><a href="https://github.com/apache/opennlp-site";>Github opennlp-site</a></p>
+<p><a href="https://github.com/apache/opennlp-site"; target="_blank" 
rel="noopener">Github opennlp-site</a></p>
 </li>
 <li>
-<p><a href="https://github.com/apache/opennlp-addons";>Github 
opennlp-addons</a></p>
+<p><a href="https://github.com/apache/opennlp-addons"; target="_blank" 
rel="noopener">Github opennlp-addons</a></p>
 </li>
 <li>
-<p><a href="https://github.com/apache/opennlp-sandbox";>Github 
opennlp-sandbox</a></p>
+<p><a href="https://github.com/apache/opennlp-sandbox"; target="_blank" 
rel="noopener">Github opennlp-sandbox</a></p>
 </li>
 </ul>
 </div>
diff --git a/using-git.html b/using-git.html
index c5a903dd..15bd187a 100644
--- a/using-git.html
+++ b/using-git.html
@@ -194,38 +194,38 @@ body {
 <p>Enable 2FA for the Github account, then logout and login</p>
 </li>
 <li>
-<p><a 
href="https://help.github.com/articles/adding-a-new-ssh-key-to-your-github-account/";>Configure
 your ssh key</a></p>
+<p><a 
href="https://help.github.com/articles/adding-a-new-ssh-key-to-your-github-account/";
 target="_blank" rel="noopener">Configure your ssh key</a></p>
 </li>
 <li>
-<p>Enter your Github username for your Apache account under <a 
href="https://id.apache.org"; class="bare">https://id.apache.org</a></p>
+<p>Enter your Github username for your Apache account under <a 
href="https://id.apache.org"; class="bare" target="_blank" 
rel="noopener">https://id.apache.org</a></p>
 </li>
 <li>
-<p>Register here <a href="https://gitbox.apache.org/setup/"; 
class="bare">https://gitbox.apache.org/setup/</a></p>
+<p>Register here <a href="https://gitbox.apache.org/setup/"; class="bare" 
target="_blank" rel="noopener">https://gitbox.apache.org/setup/</a></p>
 </li>
 <li>
-<p>The gitbox setup will confirm that everything is working, to confirm again 
check that you are listed as a member here: <a 
href="https://github.com/orgs/apache/teams/opennlp-committers/members"; 
class="bare">https://github.com/orgs/apache/teams/opennlp-committers/members</a>.</p>
+<p>The gitbox setup will confirm that everything is working, to confirm again 
check that you are listed as a member here: <a 
href="https://github.com/orgs/apache/teams/opennlp-committers/members"; 
class="bare" target="_blank" 
rel="noopener">https://github.com/orgs/apache/teams/opennlp-committers/members</a>.</p>
 </li>
 <li>
 <p>Fork the OpenNLP repositories:</p>
 <div class="ulist">
 <ul>
 <li>
-<p><a href="https://github.com/apache/opennlp-sandbox"; 
class="bare">https://github.com/apache/opennlp-sandbox</a></p>
+<p><a href="https://github.com/apache/opennlp-sandbox"; class="bare" 
target="_blank" rel="noopener">https://github.com/apache/opennlp-sandbox</a></p>
 </li>
 <li>
-<p><a href="https://github.com/apache/opennlp-addons"; 
class="bare">https://github.com/apache/opennlp-addons</a></p>
+<p><a href="https://github.com/apache/opennlp-addons"; class="bare" 
target="_blank" rel="noopener">https://github.com/apache/opennlp-addons</a></p>
 </li>
 <li>
-<p><a href="https://github.com/apache/opennlp-site"; 
class="bare">https://github.com/apache/opennlp-site</a></p>
+<p><a href="https://github.com/apache/opennlp-site"; class="bare" 
target="_blank" rel="noopener">https://github.com/apache/opennlp-site</a></p>
 </li>
 <li>
-<p><a href="https://github.com/apache/opennlp"; 
class="bare">https://github.com/apache/opennlp</a></p>
+<p><a href="https://github.com/apache/opennlp"; class="bare" target="_blank" 
rel="noopener">https://github.com/apache/opennlp</a></p>
 </li>
 </ul>
 </div>
 </li>
 <li>
-<p>Configure your <a 
href="https://help.github.com/articles/setting-your-email-in-git/";>user name 
and Apache e-mail in git</a></p>
+<p>Configure your <a 
href="https://help.github.com/articles/setting-your-email-in-git/"; 
target="_blank" rel="noopener">user name and Apache e-mail in git</a></p>
 </li>
 </ul>
 </div>
@@ -251,7 +251,7 @@ body {
 <h2 id="merge_a_pull_request_via_github">Merge a Pull Request via GitHub</h2>
 <div class="sectionbody">
 <div class="paragraph">
-<p>Please do not commit directly to the main branch. All changes are done via 
Pull Requests, and a Pull Request needs to get two positive reviews and no 
change requests until it <a 
href="https://git-scm.com/docs/git-merge#_fast_forward_merge";>can be 
merged</a>. The PR can be merged via the Github UI as described below or 
manually. Please also note that we do not use merge commits, the merge should 
be done using <a 
href="https://git-scm.com/docs/git-merge#_fast_forward_merge";>fast forward [...]
+<p>Please do not commit directly to the main branch. All changes are done via 
Pull Requests, and a Pull Request needs to get two positive reviews and no 
change requests until it <a 
href="https://git-scm.com/docs/git-merge#_fast_forward_merge"; target="_blank" 
rel="noopener">can be merged</a>. The PR can be merged via the Github UI as 
described below or manually. Please also note that we do not use merge commits, 
the merge should be done using <a href="https://git-scm.com/docs/git-merge#_f 
[...]
 </div>
 <div class="paragraph">
 <p>To merge a PR via Github follow these steps:</p>

Reply via email to