http://git-wip-us.apache.org/repos/asf/yetus/blob/21be113e/documentation/0.1.0/precommit-advanced/index.html
----------------------------------------------------------------------
diff --git a/documentation/0.1.0/precommit-advanced/index.html 
b/documentation/0.1.0/precommit-advanced/index.html
index a9a971c..d67e12a 100644
--- a/documentation/0.1.0/precommit-advanced/index.html
+++ b/documentation/0.1.0/precommit-advanced/index.html
@@ -118,7 +118,7 @@
   under the License.
 -->
 
-<h1>test-patch</h1>
+<h1 id="test-patch">test-patch</h1>
 
 <ul>
 <li><a href="#Docker_Support">Docker Support</a></li>
@@ -127,7 +127,7 @@
 <li><a href="#Important_Variables">Important Variables</a></li>
 </ul>
 
-<h1>Docker Support</h1>
+<h1 id="docker-support">Docker Support</h1>
 
 <p>By default, test-patch runs in the same shell where it was launched.  It 
can alternatively use Docker to launch itself in a container.  This is 
particularly useful if running under a QA environment that does not provide all 
the necessary binaries. For example, if the patch requires a newer version of 
Java than what is installed on a Jenkins instance.</p>
 
@@ -141,37 +141,35 @@
 <li>fail - fail the test</li>
 </ul>
 
-<p>The &#39;fail&#39; setting is always the last option that test-patch will 
use and may be omitted unless it is the only option.</p>
+<p>The &lsquo;fail&rsquo; setting is always the last option that test-patch 
will use and may be omitted unless it is the only option.</p>
 
-<p>For example, <code>--dockeronfail=continue</code> means if the Dockerfile 
can&#39;t be found, just turn off Docker support and continue running.  
<code>--dockeronfail=fallback</code> will switch to the bundled Dockerfile and 
then fail the build if docker fails to work. <code>--dockeronfail=fail</code> 
means to just fail the build and do not try any other mechanisms of recovery. 
The default is &#39;fallback,continue,fail&#39; which will allow test-patch to 
try to continue executing as much as it possibily can.</p>
+<p>For example, <code>--dockeronfail=continue</code> means if the Dockerfile 
can&rsquo;t be found, just turn off Docker support and continue running.  
<code>--dockeronfail=fallback</code> will switch to the bundled Dockerfile and 
then fail the build if docker fails to work. <code>--dockeronfail=fail</code> 
means to just fail the build and do not try any other mechanisms of recovery. 
The default is &#39;fallback,continue,fail&rsquo; which will allow test-patch 
to try to continue executing as much as it possibily can.</p>
 
 <p>Be aware that if the Dockerfile is found and the docker command works, 
test-patch will always fail the build if the Dockerfile itself fails the build. 
 It will not attempt to continue in the non-Docker mode.</p>
 
-<p>NOTE: If you are using Boot2Docker, you must use directories under /Users 
(OSX) or C:\Users (Windows) as the base and patchprocess directories (specified 
by the --basedir and --patch-dir options respectively), because automatically 
mountable directories are limited to them. See <a 
href="https://docs.docker.com/userguide/dockervolumes/#mount-a-host-directory-as-a-data-volume";>the
 Docker documentation</a>.</p>
+<p>NOTE: If you are using Boot2Docker, you must use directories under /Users 
(OSX) or C:\Users (Windows) as the base and patchprocess directories (specified 
by the &ndash;basedir and &ndash;patch-dir options respectively), because 
automatically mountable directories are limited to them. See <a 
href="https://docs.docker.com/userguide/dockervolumes/#mount-a-host-directory-as-a-data-volume";>the
 Docker documentation</a>.</p>
 
-<p>Dockerfile images will be named with a test-patch prefix and suffix with 
either a date or a git commit hash. By using this information, test-patch will 
automatically manage broken/stale container images that are hanging around if 
it is run in --jenkins mode.  In this way, if Docker fails to build the image, 
the disk space should eventually be cleaned and returned back to the system.</p>
+<p>Dockerfile images will be named with a test-patch prefix and suffix with 
either a date or a git commit hash. By using this information, test-patch will 
automatically manage broken/stale container images that are hanging around if 
it is run in &ndash;jenkins mode.  In this way, if Docker fails to build the 
image, the disk space should eventually be cleaned and returned back to the 
system.</p>
 
-<h1>Plug-ins</h1>
+<h1 id="plug-ins">Plug-ins</h1>
 
 <p>test-patch allows one to add to its basic feature set via plug-ins.  There 
is a directory called test-patch.d off of the directory where test-patch.sh 
lives.  Inside this directory one may place some bash shell fragments that, if 
setup with proper functions, will allow for test-patch to call it as necessary. 
 Different plug-ins have specific functions for that particular functionality.  
In this document, the common functions available to all/most plug-ins are 
covered.  Test plugins are covered below. See other documentation for pertinent 
information for the other plug-in types.</p>
 
-<h2>Common Plug-in Functions</h2>
+<h2 id="common-plug-in-functions">Common Plug-in Functions</h2>
 
-<p>Every plug-in must have one line in order to be recognized, usually an 
&#39;add&#39; statement.  Test plug-ins, for example, have this statement:</p>
-
-<pre><code class="bash">add_test_type &lt;pluginname&gt;
+<p>Every plug-in must have one line in order to be recognized, usually an 
&#39;add&rsquo; statement.  Test plug-ins, for example, have this statement:</p>
+<pre class="highlight shell"><code>add_test_type &lt;pluginname&gt;
 </code></pre>
 
-<p>This function call registers the <code>pluginname</code> so that test-patch 
knows that it exists.  Plug-in names must be unique across all the different 
plug-in types.  Additionally, the &#39;all&#39; plug-in is reserved.  The 
<code>pluginname</code> also acts as the key to the custom functions that you 
can define. For example:</p>
-
-<pre><code class="bash">function pluginname_filefilter
+<p>This function call registers the <code>pluginname</code> so that test-patch 
knows that it exists.  Plug-in names must be unique across all the different 
plug-in types.  Additionally, the &#39;all&rsquo; plug-in is reserved.  The 
<code>pluginname</code> also acts as the key to the custom functions that you 
can define. For example:</p>
+<pre class="highlight shell"><code><span class="k">function 
</span>pluginname_filefilter
 </code></pre>
 
 <p>defines the filefilter for the <code>pluginname</code> plug-in.</p>
 
 <p>Similarly, there are other functions that may be defined during the 
test-patch run:</p>
-
-<p>HINT: It is recommended to make the pluginname relatively small, 10 
characters at the most.  Otherwise, the ASCII output table may be skewed.</p>
+<pre class="highlight plaintext"><code>HINT: It is recommended to make the 
pluginname relatively small, 10 characters at the most.  Otherwise, the ASCII 
output table may be skewed.
+</code></pre>
 
 <ul>
 <li><p>pluginname_initialize</p>
@@ -202,7 +200,7 @@
 <li><p>pluginname_compile</p>
 
 <ul>
-<li>executed immediately after the actual compilation. This is step is 
intended to be used to verify the results and add extra checking of the compile 
phase and it&#39;s stdout/stderr.</li>
+<li>executed immediately after the actual compilation. This is step is 
intended to be used to verify the results and add extra checking of the compile 
phase and it&rsquo;s stdout/stderr.</li>
 </ul></li>
 <li><p>pluginname_postcompile</p>
 
@@ -216,7 +214,7 @@
 </ul></li>
 </ul>
 
-<h2>Plug-in Importation</h2>
+<h2 id="plug-in-importation">Plug-in Importation</h2>
 
 <p>Plug-ins are imported from several key directories:</p>
 
@@ -228,11 +226,10 @@
 
 <p>If the <code>--skip-system-plugins</code> flag is passed, then only core.d 
is imported.</p>
 
-<h2>Test Plug-ins</h2>
+<h2 id="test-plug-ins">Test Plug-ins</h2>
 
 <p>Plug-ins geared towards independent tests are registed via:</p>
-
-<pre><code class="bash">add_test_type &lt;pluginname&gt;
+<pre class="highlight shell"><code>add_test_type &lt;pluginname&gt;
 </code></pre>
 
 <ul>
@@ -248,9 +245,9 @@
 </ul></li>
 </ul>
 
-<h1>Personalities</h1>
+<h1 id="personalities">Personalities</h1>
 
-<h2>Configuring for Other Projects</h2>
+<h2 id="configuring-for-other-projects">Configuring for Other Projects</h2>
 
 <p>It is impossible for any general framework to be predictive about what 
types of special rules any given project may have, especially when it comes to 
ordering and Maven profiles.  In order to direct test-patch to do the correct 
action, a project <code>personality</code> should be added that enacts these 
custom rules.</p>
 
@@ -258,44 +255,41 @@
 
 <p>There can be only <strong>one</strong> of each personality function 
defined.</p>
 
-<h2>Global Definitions</h2>
+<h2 id="global-definitions">Global Definitions</h2>
 
 <p>Globals for personalities should be defined in the 
<code>personality_globals</code> function.  This function is called 
<em>after</em> the other plug-ins have been imported.  This allows one to 
configure any settings for plug-ins that have been imported safely:</p>
-
-<pre><code class="bash">funciton personality_globals
-{
-  PATCH_BRANCH_DEFAULT=master
-  GITHUB_REPO=&quot;apache/yetus&quot;
-}
+<pre class="highlight shell"><code>funciton personality_globals
+<span class="o">{</span>
+  <span class="nv">PATCH_BRANCH_DEFAULT</span><span class="o">=</span>master
+  <span class="nv">GITHUB_REPO</span><span class="o">=</span><span 
class="s2">"apache/yetus"</span>
+<span class="o">}</span>
 </code></pre>
 
-<h2>Test Determination</h2>
+<h2 id="test-determination">Test Determination</h2>
 
 <p>The <code>personality_file_tests</code> function determines which tests to 
turn on based upon the file name.  It is relatively simple.  For example, to 
turn on a full suite of tests for Java files:</p>
+<pre class="highlight shell"><code><span class="k">function 
</span>personality_file_tests
+<span class="o">{</span>
+  <span class="nb">local </span><span class="nv">filename</span><span 
class="o">=</span><span class="nv">$1</span>
 
-<pre><code class="bash">function personality_file_tests
-{
-  local filename=$1
-
-  if [[ ${filename} =~ \.java$ ]]; then
-    add_test findbugs
+  <span class="k">if</span> <span class="o">[[</span> <span 
class="k">${</span><span class="nv">filename</span><span class="k">}</span> 
<span class="o">=</span>~ <span class="se">\.</span>java<span class="nv">$ 
</span><span class="o">]]</span>; <span class="k">then
+    </span>add_test findbugs
     add_test javac
     add_test javadoc
     add_test mvninstall
     add_test unit
-  fi
+  <span class="k">fi</span>
 
-}
+<span class="o">}</span>
 </code></pre>
 
 <p>The <code>add_test</code> function is used to activate the standard tests.  
Additional plug-ins (such as checkstyle), will get queried on their own.</p>
 
-<h2>Module &amp; Profile Determination</h2>
-
-<p>Once the tests are determined, it is now time to pick which <a 
href="precommit-glossary.md#genericoutside-definitions">modules</a> should get 
used.  That&#39;s the job of the <code>personality_modules</code> function.</p>
+<h2 id="module-amp-profile-determination">Module &amp; Profile 
Determination</h2>
 
-<pre><code class="bash">function personality_modules
-{
+<p>Once the tests are determined, it is now time to pick which <a 
href="precommit-glossary.md#genericoutside-definitions">modules</a> should get 
used.  That&rsquo;s the job of the <code>personality_modules</code> 
function.</p>
+<pre class="highlight shell"><code><span class="k">function 
</span>personality_modules
+<span class="o">{</span>
 
     clear_personality_queue
 
@@ -303,7 +297,7 @@
 
     personality_enqueue_module &lt;module&gt; &lt;flags&gt;
 
-}
+<span class="o">}</span>
 </code></pre>
 
 <p>It takes exactly two parameters <code>repostatus</code> and 
<code>testtype</code>.</p>
@@ -314,39 +308,37 @@
 
 <p>In order to communicate back to test-patch, there are two functions for the 
personality to use.</p>
 
-<p>The first is <code>clear_personality_queue</code>. This removes the 
previous test&#39;s configuration so that a new module queue may be built. 
Custom <code>personality_modules</code> will almost always want to do this as 
the first action.</p>
-
-<p>The second is <code>personality_enqueue_module</code>.  This function takes 
two parameters.  The first parameter is the name of the module to add to this 
test&#39;s queue.  The second parameter is an option list of additional flags 
to pass to Maven when processing it. <code>personality_enqueue_module</code> 
may be called as many times as necessary for your project.</p>
+<p>The first is <code>clear_personality_queue</code>. This removes the 
previous test&rsquo;s configuration so that a new module queue may be built. 
Custom <code>personality_modules</code> will almost always want to do this as 
the first action.</p>
 
-<p>NOTE: A module name of . signifies the root of the repository.</p>
-
-<p>For example, let&#39;s say your project uses a special configuration to 
skip unit tests (-DskipTests).  Running unit tests during a javadoc build 
isn&#39;t very useful and wastes a lot of time. We can write a simple 
personality check to disable the unit tests:</p>
+<p>The second is <code>personality_enqueue_module</code>.  This function takes 
two parameters.  The first parameter is the name of the module to add to this 
test&rsquo;s queue.  The second parameter is an option list of additional flags 
to pass to Maven when processing it. <code>personality_enqueue_module</code> 
may be called as many times as necessary for your project.</p>
+<pre class="highlight plaintext"><code>NOTE: A module name of . signifies the 
root of the repository.
+</code></pre>
 
-<pre><code class="bash">function personality_modules
-{
-    local repostatus=$1
-    local testtype=$2
+<p>For example, let&rsquo;s say your project uses a special configuration to 
skip unit tests (-DskipTests).  Running unit tests during a javadoc build 
isn&rsquo;t very useful and wastes a lot of time. We can write a simple 
personality check to disable the unit tests:</p>
+<pre class="highlight shell"><code><span class="k">function 
</span>personality_modules
+<span class="o">{</span>
+    <span class="nb">local </span><span class="nv">repostatus</span><span 
class="o">=</span><span class="nv">$1</span>
+    <span class="nb">local </span><span class="nv">testtype</span><span 
class="o">=</span><span class="nv">$2</span>
 
-    if [[ ${testtype} == &#39;javadoc&#39; ]]; then
-        personality_enqueue_module . -DskipTests
-        return
-    fi
+    <span class="k">if</span> <span class="o">[[</span> <span 
class="k">${</span><span class="nv">testtype</span><span class="k">}</span> 
<span class="o">==</span> <span class="s1">'javadoc'</span> <span 
class="o">]]</span>; <span class="k">then
+        </span>personality_enqueue_module . -DskipTests
+        <span class="k">return
+    fi</span>
     ...
 
 </code></pre>
 
 <p>This function will tell test-patch that when the javadoc test is being run, 
do the documentation build at the base of the source repository and make sure 
the -DskipTests flag is passed to our build tool.</p>
 
-<h2>Enabling Plug-ins</h2>
+<h2 id="enabling-plug-ins">Enabling Plug-ins</h2>
 
 <p>Personalities can set the base list of plug-ins to enable and disable for 
their project via the <code>personality_plugins</code> function. Just call it 
with the same pattern as the <code>--plugins</code> command line option:</p>
-
-<pre><code class="bash">personality_plugins 
&quot;all,-checkstyle,-findbugs,-asflicense&quot;
+<pre class="highlight shell"><code>personality_plugins <span 
class="s2">"all,-checkstyle,-findbugs,-asflicense"</span>
 </code></pre>
 
 <p>This list is used if the user does not provide a list of plug-ins.</p>
 
-<h1>Important Variables</h1>
+<h1 id="important-variables">Important Variables</h1>
 
 <p>There are a handful of extremely important system variables that make life 
easier for personality and plug-in writers.  Other variables may be provided by 
individual plug-ins.  Check their development documentation for more 
information.</p>
 
@@ -354,13 +346,13 @@
 <li><p>BUILD_NATIVE will be set to true if the system has requested that 
non-JVM-based code be built (e.g., JNI or other compiled C code). Under 
Jenkins, this is always true.</p></li>
 <li><p>BUILDTOOL specifies which tool is currently being used to drive 
compilation.  Additionally, many build tools define xyz_ARGS to pass on to the 
build tool command line. (e.g., MAVEN_ARGS if maven is in use).  Projects may 
set this in their personality.  NOTE: today, only one build tool at a time is 
supported.  This may change in the future.</p></li>
 <li><p>CHANGED_FILES is a list of all files that appear to be added, deleted, 
or modified in the patch.</p></li>
-<li><p>CHANGED_MODULES is a list of all modules that house all of the 
CHANGED_FILES.  Be aware that the root of the source tree is reported as 
&#39;.&#39;.</p></li>
+<li><p>CHANGED_MODULES is a list of all modules that house all of the 
CHANGED_FILES.  Be aware that the root of the source tree is reported as 
&rsquo;.&rsquo;.</p></li>
 <li><p>GITHUB_REPO is to help test-patch when talking to Github.  If 
test-patch is given just a number on the command line, it will default to using 
this repo to determine the pull request.</p></li>
 <li><p>JIRA_ISSUE_RE is to help test-patch when talking to JIRA.  It helps 
determine if the given project is appropriate for the given JIRA issue.</p></li>
 <li><p>MODULE and other MODULE_* are arrays that contain which modules, the 
status, etc, to be operated upon. These should be treated as read-only by 
plug-ins.</p></li>
 <li><p>PATCH_BRANCH_DEFAULT is the name of the branch in the git repo that is 
considered the master.  This is useful to set in personalities.</p></li>
 <li><p>PATCH_DIR is the name of the temporary directory that houses test-patch 
artifacts (such as logs and the patch file itself)</p></li>
-<li><p>PATCH_NAMING_RULE should be a URL that points to a project&#39;s 
on-boarding documentation for new users. It is used to suggest a review of 
patch naming guidelines. Since this should be project specific information, it 
is useful to set in a project&#39;s personality.</p></li>
+<li><p>PATCH_NAMING_RULE should be a URL that points to a project&rsquo;s 
on-boarding documentation for new users. It is used to suggest a review of 
patch naming guidelines. Since this should be project specific information, it 
is useful to set in a project&rsquo;s personality.</p></li>
 <li><p>TEST_PARALLEL if parallel unit tests have been requested. Project 
personalities are responsible for actually enabling or ignoring the request. 
TEST_THREADS is the number of threads that have been requested to run in 
parallel.</p></li>
 </ul>
 

http://git-wip-us.apache.org/repos/asf/yetus/blob/21be113e/documentation/0.1.0/precommit-apidocs/core/index.html
----------------------------------------------------------------------
diff --git a/documentation/0.1.0/precommit-apidocs/core/index.html 
b/documentation/0.1.0/precommit-apidocs/core/index.html
index ff7b1cd..ea240a3 100644
--- a/documentation/0.1.0/precommit-apidocs/core/index.html
+++ b/documentation/0.1.0/precommit-apidocs/core/index.html
@@ -164,15 +164,14 @@
 
 <hr>
 
-<h2>Public/Stable/Replaceable</h2>
+<h2 id="public-stable-replaceable">Public/Stable/Replaceable</h2>
 
-<h3><code>add_bugsystem</code></h3>
+<h3 id="add_bugsystem"><code>add_bugsystem</code></h3>
 
 <ul>
 <li>Synopsis</li>
 </ul>
-
-<pre><code>add_bugsystem bugsystem
+<pre class="highlight plaintext"><code>add_bugsystem bugsystem
 </code></pre>
 
 <ul>
@@ -203,13 +202,12 @@
 <td style="text-align: left">Yes</td>
 </tr>
 </tbody></table>
-<h3><code>add_build_tool</code></h3>
+<h3 id="add_build_tool"><code>add_build_tool</code></h3>
 
 <ul>
 <li>Synopsis</li>
 </ul>
-
-<pre><code>add_build_tool build tool
+<pre class="highlight plaintext"><code>add_build_tool build tool
 </code></pre>
 
 <ul>
@@ -240,13 +238,12 @@
 <td style="text-align: left">Yes</td>
 </tr>
 </tbody></table>
-<h3><code>add_test</code></h3>
+<h3 id="add_test"><code>add_test</code></h3>
 
 <ul>
 <li>Synopsis</li>
 </ul>
-
-<pre><code>add_test test
+<pre class="highlight plaintext"><code>add_test test
 </code></pre>
 
 <ul>
@@ -277,13 +274,12 @@
 <td style="text-align: left">Yes</td>
 </tr>
 </tbody></table>
-<h3><code>add_test_format</code></h3>
+<h3 id="add_test_format"><code>add_test_format</code></h3>
 
 <ul>
 <li>Synopsis</li>
 </ul>
-
-<pre><code>add_test_format test format
+<pre class="highlight plaintext"><code>add_test_format test format
 </code></pre>
 
 <ul>
@@ -314,13 +310,12 @@
 <td style="text-align: left">Yes</td>
 </tr>
 </tbody></table>
-<h3><code>add_test_type</code></h3>
+<h3 id="add_test_type"><code>add_test_type</code></h3>
 
 <ul>
 <li>Synopsis</li>
 </ul>
-
-<pre><code>add_test_type plugin
+<pre class="highlight plaintext"><code>add_test_type plugin
 </code></pre>
 
 <ul>
@@ -351,13 +346,12 @@
 <td style="text-align: left">Yes</td>
 </tr>
 </tbody></table>
-<h3><code>delete_bugsystem</code></h3>
+<h3 id="delete_bugsystem"><code>delete_bugsystem</code></h3>
 
 <ul>
 <li>Synopsis</li>
 </ul>
-
-<pre><code>delete_bugsystem bugsystem
+<pre class="highlight plaintext"><code>delete_bugsystem bugsystem
 </code></pre>
 
 <ul>
@@ -388,13 +382,12 @@
 <td style="text-align: left">Yes</td>
 </tr>
 </tbody></table>
-<h3><code>delete_build_tool</code></h3>
+<h3 id="delete_build_tool"><code>delete_build_tool</code></h3>
 
 <ul>
 <li>Synopsis</li>
 </ul>
-
-<pre><code>delete_build_tool build tool
+<pre class="highlight plaintext"><code>delete_build_tool build tool
 </code></pre>
 
 <ul>
@@ -425,13 +418,12 @@
 <td style="text-align: left">Yes</td>
 </tr>
 </tbody></table>
-<h3><code>delete_test</code></h3>
+<h3 id="delete_test"><code>delete_test</code></h3>
 
 <ul>
 <li>Synopsis</li>
 </ul>
-
-<pre><code>delete_test test
+<pre class="highlight plaintext"><code>delete_test test
 </code></pre>
 
 <ul>
@@ -462,13 +454,12 @@
 <td style="text-align: left">Yes</td>
 </tr>
 </tbody></table>
-<h3><code>delete_test_format</code></h3>
+<h3 id="delete_test_format"><code>delete_test_format</code></h3>
 
 <ul>
 <li>Synopsis</li>
 </ul>
-
-<pre><code>delete_test_format test format
+<pre class="highlight plaintext"><code>delete_test_format test format
 </code></pre>
 
 <ul>
@@ -499,13 +490,12 @@
 <td style="text-align: left">Yes</td>
 </tr>
 </tbody></table>
-<h3><code>delete_test_type</code></h3>
+<h3 id="delete_test_type"><code>delete_test_type</code></h3>
 
 <ul>
 <li>Synopsis</li>
 </ul>
-
-<pre><code>delete_test_type plugin
+<pre class="highlight plaintext"><code>delete_test_type plugin
 </code></pre>
 
 <ul>
@@ -536,13 +526,12 @@
 <td style="text-align: left">Yes</td>
 </tr>
 </tbody></table>
-<h3><code>personality_plugins</code></h3>
+<h3 id="personality_plugins"><code>personality_plugins</code></h3>
 
 <ul>
 <li>Synopsis</li>
 </ul>
-
-<pre><code>personality_plugins plug-in list string
+<pre class="highlight plaintext"><code>personality_plugins plug-in list string
 </code></pre>
 
 <ul>
@@ -573,13 +562,12 @@
 <td style="text-align: left">Yes</td>
 </tr>
 </tbody></table>
-<h3><code>verify_needed_test</code></h3>
+<h3 id="verify_needed_test"><code>verify_needed_test</code></h3>
 
 <ul>
 <li>Synopsis</li>
 </ul>
-
-<pre><code>verify_needed_test test
+<pre class="highlight plaintext"><code>verify_needed_test test
 </code></pre>
 
 <ul>
@@ -612,13 +600,12 @@
 <td style="text-align: left">Yes</td>
 </tr>
 </tbody></table>
-<h3><code>verify_plugin_enabled</code></h3>
+<h3 id="verify_plugin_enabled"><code>verify_plugin_enabled</code></h3>
 
 <ul>
 <li>Synopsis</li>
 </ul>
-
-<pre><code>verify_plugin_enabled test
+<pre class="highlight plaintext"><code>verify_plugin_enabled test
 </code></pre>
 
 <ul>
@@ -649,15 +636,14 @@
 <td style="text-align: left">Yes</td>
 </tr>
 </tbody></table>
-<h2>Public/Stable/Not Replaceable</h2>
+<h2 id="public-stable-not-replaceable">Public/Stable/Not Replaceable</h2>
 
-<h3><code>common_defaults</code></h3>
+<h3 id="common_defaults"><code>common_defaults</code></h3>
 
 <ul>
 <li>Synopsis</li>
 </ul>
-
-<pre><code>common_defaults
+<pre class="highlight plaintext"><code>common_defaults
 </code></pre>
 
 <ul>
@@ -688,20 +674,19 @@
 <td style="text-align: left">No</td>
 </tr>
 </tbody></table>
-<h3><code>patchfile_verify_zero</code></h3>
+<h3 id="patchfile_verify_zero"><code>patchfile_verify_zero</code></h3>
 
 <ul>
 <li>Synopsis</li>
 </ul>
-
-<pre><code>patchfile_verify_zero log filename
+<pre class="highlight plaintext"><code>patchfile_verify_zero log filename
 </code></pre>
 
 <ul>
 <li>Description</li>
 </ul>
 
-<p>if patch-level zero, then verify we aren&#39;t just adding files</p>
+<p>if patch-level zero, then verify we aren&rsquo;t just adding files</p>
 
 <ul>
 <li>Returns</li>
@@ -725,13 +710,12 @@
 <td style="text-align: left">No</td>
 </tr>
 </tbody></table>
-<h3><code>yetus_abs</code></h3>
+<h3 id="yetus_abs"><code>yetus_abs</code></h3>
 
 <ul>
 <li>Synopsis</li>
 </ul>
-
-<pre><code>yetus_abs directory
+<pre class="highlight plaintext"><code>yetus_abs directory
 </code></pre>
 
 <ul>
@@ -766,13 +750,12 @@
 <td style="text-align: left">No</td>
 </tr>
 </tbody></table>
-<h3><code>yetus_add_entry</code></h3>
+<h3 id="yetus_add_entry"><code>yetus_add_entry</code></h3>
 
 <ul>
 <li>Synopsis</li>
 </ul>
-
-<pre><code>yetus_add_entry
+<pre class="highlight plaintext"><code>yetus_add_entry
 </code></pre>
 
 <ul>
@@ -803,20 +786,19 @@
 <td style="text-align: left">No</td>
 </tr>
 </tbody></table>
-<h3><code>yetus_debug</code></h3>
+<h3 id="yetus_debug"><code>yetus_debug</code></h3>
 
 <ul>
 <li>Synopsis</li>
 </ul>
-
-<pre><code>yetus_debug string
+<pre class="highlight plaintext"><code>yetus_debug string
 </code></pre>
 
 <ul>
 <li>Description</li>
 </ul>
 
-<p>Print a message to stderr if --debug is turned on</p>
+<p>Print a message to stderr if &ndash;debug is turned on</p>
 
 <ul>
 <li>Returns</li>
@@ -840,13 +822,12 @@
 <td style="text-align: left">No</td>
 </tr>
 </tbody></table>
-<h3><code>yetus_delete_entry</code></h3>
+<h3 id="yetus_delete_entry"><code>yetus_delete_entry</code></h3>
 
 <ul>
 <li>Synopsis</li>
 </ul>
-
-<pre><code>yetus_delete_entry
+<pre class="highlight plaintext"><code>yetus_delete_entry
 </code></pre>
 
 <ul>
@@ -877,13 +858,12 @@
 <td style="text-align: left">No</td>
 </tr>
 </tbody></table>
-<h3><code>yetus_error</code></h3>
+<h3 id="yetus_error"><code>yetus_error</code></h3>
 
 <ul>
 <li>Synopsis</li>
 </ul>
-
-<pre><code>yetus_error string
+<pre class="highlight plaintext"><code>yetus_error string
 </code></pre>
 
 <ul>
@@ -914,13 +894,12 @@
 <td style="text-align: left">No</td>
 </tr>
 </tbody></table>
-<h3><code>yetus_run_and_redirect</code></h3>
+<h3 id="yetus_run_and_redirect"><code>yetus_run_and_redirect</code></h3>
 
 <ul>
 <li>Synopsis</li>
 </ul>
-
-<pre><code>yetus_run_and_redirect filename command [..]
+<pre class="highlight plaintext"><code>yetus_run_and_redirect filename command 
[..]
 </code></pre>
 
 <ul>
@@ -951,13 +930,12 @@
 <td style="text-align: left">No</td>
 </tr>
 </tbody></table>
-<h3><code>yetus_verify_entry</code></h3>
+<h3 id="yetus_verify_entry"><code>yetus_verify_entry</code></h3>
 
 <ul>
 <li>Synopsis</li>
 </ul>
-
-<pre><code>yetus_verify_entry
+<pre class="highlight plaintext"><code>yetus_verify_entry
 </code></pre>
 
 <ul>
@@ -988,15 +966,14 @@
 <td style="text-align: left">No</td>
 </tr>
 </tbody></table>
-<h2>Public/Evolving/Not Replaceable</h2>
+<h2 id="public-evolving-not-replaceable">Public/Evolving/Not Replaceable</h2>
 
-<h3><code>list_plugins</code></h3>
+<h3 id="list_plugins"><code>list_plugins</code></h3>
 
 <ul>
 <li>Synopsis</li>
 </ul>
-
-<pre><code>list_plugins
+<pre class="highlight plaintext"><code>list_plugins
 </code></pre>
 
 <ul>
@@ -1027,15 +1004,14 @@
 <td style="text-align: left">No</td>
 </tr>
 </tbody></table>
-<h2>None/None/Not Replaceable</h2>
+<h2 id="none-none-not-replaceable">None/None/Not Replaceable</h2>
 
-<h3><code>docker_version</code></h3>
+<h3 id="docker_version"><code>docker_version</code></h3>
 
 <ul>
 <li>Synopsis</li>
 </ul>
-
-<pre><code>docker_version
+<pre class="highlight plaintext"><code>docker_version
 </code></pre>
 
 <ul>
@@ -1066,13 +1042,12 @@
 <td style="text-align: left">No</td>
 </tr>
 </tbody></table>
-<h3><code>personality_file_tests</code></h3>
+<h3 id="personality_file_tests"><code>personality_file_tests</code></h3>
 
 <ul>
 <li>Synopsis</li>
 </ul>
-
-<pre><code>personality_file_tests
+<pre class="highlight plaintext"><code>personality_file_tests
 </code></pre>
 
 <ul>
@@ -1103,13 +1078,12 @@
 <td style="text-align: left">No</td>
 </tr>
 </tbody></table>
-<h3><code>personality_modules</code></h3>
+<h3 id="personality_modules"><code>personality_modules</code></h3>
 
 <ul>
 <li>Synopsis</li>
 </ul>
-
-<pre><code>personality_modules
+<pre class="highlight plaintext"><code>personality_modules
 </code></pre>
 
 <ul>

http://git-wip-us.apache.org/repos/asf/yetus/blob/21be113e/documentation/0.1.0/precommit-apidocs/index.html
----------------------------------------------------------------------
diff --git a/documentation/0.1.0/precommit-apidocs/index.html 
b/documentation/0.1.0/precommit-apidocs/index.html
index 53ea1ed..b832441 100644
--- a/documentation/0.1.0/precommit-apidocs/index.html
+++ b/documentation/0.1.0/precommit-apidocs/index.html
@@ -118,7 +118,7 @@
   under the License.
 -->
 
-<h1>Precommit API Docs</h1>
+<h1 id="precommit-api-docs">Precommit API Docs</h1>
 
 <p>Following gives the downstream consumable API for precommit components.</p>
 

http://git-wip-us.apache.org/repos/asf/yetus/blob/21be113e/documentation/0.1.0/precommit-apidocs/plugins/index.html
----------------------------------------------------------------------
diff --git a/documentation/0.1.0/precommit-apidocs/plugins/index.html 
b/documentation/0.1.0/precommit-apidocs/plugins/index.html
index 609abd0..a5dc700 100644
--- a/documentation/0.1.0/precommit-apidocs/plugins/index.html
+++ b/documentation/0.1.0/precommit-apidocs/plugins/index.html
@@ -251,15 +251,14 @@
 
 <hr>
 
-<h2>Public/Stable/Not Replaceable</h2>
+<h2 id="public-stable-not-replaceable">Public/Stable/Not Replaceable</h2>
 
-<h3><code>bugzilla_write_comment</code></h3>
+<h3 id="bugzilla_write_comment"><code>bugzilla_write_comment</code></h3>
 
 <ul>
 <li>Synopsis</li>
 </ul>
-
-<pre><code>bugzilla_write_comment filename
+<pre class="highlight plaintext"><code>bugzilla_write_comment filename
 </code></pre>
 
 <ul>
@@ -290,13 +289,12 @@
 <td style="text-align: left">No</td>
 </tr>
 </tbody></table>
-<h3><code>github_write_comment</code></h3>
+<h3 id="github_write_comment"><code>github_write_comment</code></h3>
 
 <ul>
 <li>Synopsis</li>
 </ul>
-
-<pre><code>github_write_comment filename
+<pre class="highlight plaintext"><code>github_write_comment filename
 </code></pre>
 
 <ul>
@@ -327,13 +325,12 @@
 <td style="text-align: left">No</td>
 </tr>
 </tbody></table>
-<h3><code>javac_precheck</code></h3>
+<h3 id="javac_precheck"><code>javac_precheck</code></h3>
 
 <ul>
 <li>Synopsis</li>
 </ul>
-
-<pre><code>javac_precheck
+<pre class="highlight plaintext"><code>javac_precheck
 </code></pre>
 
 <ul>
@@ -366,13 +363,12 @@
 <td style="text-align: left">No</td>
 </tr>
 </tbody></table>
-<h3><code>jira_write_comment</code></h3>
+<h3 id="jira_write_comment"><code>jira_write_comment</code></h3>
 
 <ul>
 <li>Synopsis</li>
 </ul>
-
-<pre><code>jira_write_comment filename
+<pre class="highlight plaintext"><code>jira_write_comment filename
 </code></pre>
 
 <ul>
@@ -403,15 +399,14 @@
 <td style="text-align: left">No</td>
 </tr>
 </tbody></table>
-<h2>None/None/Not Replaceable</h2>
+<h2 id="none-none-not-replaceable">None/None/Not Replaceable</h2>
 
-<h3><code>ant_buildfile</code></h3>
+<h3 id="ant_buildfile"><code>ant_buildfile</code></h3>
 
 <ul>
 <li>Synopsis</li>
 </ul>
-
-<pre><code>ant_buildfile
+<pre class="highlight plaintext"><code>ant_buildfile
 </code></pre>
 
 <ul>
@@ -442,13 +437,12 @@
 <td style="text-align: left">No</td>
 </tr>
 </tbody></table>
-<h3><code>ant_builtin_personality_file_tests</code></h3>
+<h3 
id="ant_builtin_personality_file_tests"><code>ant_builtin_personality_file_tests</code></h3>
 
 <ul>
 <li>Synopsis</li>
 </ul>
-
-<pre><code>ant_builtin_personality_file_tests
+<pre class="highlight plaintext"><code>ant_builtin_personality_file_tests
 </code></pre>
 
 <ul>
@@ -479,13 +473,12 @@
 <td style="text-align: left">No</td>
 </tr>
 </tbody></table>
-<h3><code>ant_builtin_personality_modules</code></h3>
+<h3 
id="ant_builtin_personality_modules"><code>ant_builtin_personality_modules</code></h3>
 
 <ul>
 <li>Synopsis</li>
 </ul>
-
-<pre><code>ant_builtin_personality_modules
+<pre class="highlight plaintext"><code>ant_builtin_personality_modules
 </code></pre>
 
 <ul>
@@ -516,13 +509,12 @@
 <td style="text-align: left">No</td>
 </tr>
 </tbody></table>
-<h3><code>ant_docker_support</code></h3>
+<h3 id="ant_docker_support"><code>ant_docker_support</code></h3>
 
 <ul>
 <li>Synopsis</li>
 </ul>
-
-<pre><code>ant_docker_support
+<pre class="highlight plaintext"><code>ant_docker_support
 </code></pre>
 
 <ul>
@@ -553,13 +545,12 @@
 <td style="text-align: left">No</td>
 </tr>
 </tbody></table>
-<h3><code>ant_executor</code></h3>
+<h3 id="ant_executor"><code>ant_executor</code></h3>
 
 <ul>
 <li>Synopsis</li>
 </ul>
-
-<pre><code>ant_executor
+<pre class="highlight plaintext"><code>ant_executor
 </code></pre>
 
 <ul>
@@ -590,13 +581,12 @@
 <td style="text-align: left">No</td>
 </tr>
 </tbody></table>
-<h3><code>ant_filefilter</code></h3>
+<h3 id="ant_filefilter"><code>ant_filefilter</code></h3>
 
 <ul>
 <li>Synopsis</li>
 </ul>
-
-<pre><code>ant_filefilter
+<pre class="highlight plaintext"><code>ant_filefilter
 </code></pre>
 
 <ul>
@@ -627,13 +617,12 @@
 <td style="text-align: left">No</td>
 </tr>
 </tbody></table>
-<h3><code>ant_initialize</code></h3>
+<h3 id="ant_initialize"><code>ant_initialize</code></h3>
 
 <ul>
 <li>Synopsis</li>
 </ul>
-
-<pre><code>ant_initialize
+<pre class="highlight plaintext"><code>ant_initialize
 </code></pre>
 
 <ul>
@@ -664,13 +653,12 @@
 <td style="text-align: left">No</td>
 </tr>
 </tbody></table>
-<h3><code>ant_modules_worker</code></h3>
+<h3 id="ant_modules_worker"><code>ant_modules_worker</code></h3>
 
 <ul>
 <li>Synopsis</li>
 </ul>
-
-<pre><code>ant_modules_worker
+<pre class="highlight plaintext"><code>ant_modules_worker
 </code></pre>
 
 <ul>
@@ -701,13 +689,12 @@
 <td style="text-align: left">No</td>
 </tr>
 </tbody></table>
-<h3><code>ant_parse_args</code></h3>
+<h3 id="ant_parse_args"><code>ant_parse_args</code></h3>
 
 <ul>
 <li>Synopsis</li>
 </ul>
-
-<pre><code>ant_parse_args
+<pre class="highlight plaintext"><code>ant_parse_args
 </code></pre>
 
 <ul>
@@ -738,13 +725,12 @@
 <td style="text-align: left">No</td>
 </tr>
 </tbody></table>
-<h3><code>ant_usage</code></h3>
+<h3 id="ant_usage"><code>ant_usage</code></h3>
 
 <ul>
 <li>Synopsis</li>
 </ul>
-
-<pre><code>ant_usage
+<pre class="highlight plaintext"><code>ant_usage
 </code></pre>
 
 <ul>
@@ -775,13 +761,12 @@
 <td style="text-align: left">No</td>
 </tr>
 </tbody></table>
-<h3><code>asflicense_parse_args</code></h3>
+<h3 id="asflicense_parse_args"><code>asflicense_parse_args</code></h3>
 
 <ul>
 <li>Synopsis</li>
 </ul>
-
-<pre><code>asflicense_parse_args
+<pre class="highlight plaintext"><code>asflicense_parse_args
 </code></pre>
 
 <ul>
@@ -812,13 +797,12 @@
 <td style="text-align: left">No</td>
 </tr>
 </tbody></table>
-<h3><code>asflicense_usage</code></h3>
+<h3 id="asflicense_usage"><code>asflicense_usage</code></h3>
 
 <ul>
 <li>Synopsis</li>
 </ul>
-
-<pre><code>asflicense_usage
+<pre class="highlight plaintext"><code>asflicense_usage
 </code></pre>
 
 <ul>
@@ -849,13 +833,12 @@
 <td style="text-align: left">No</td>
 </tr>
 </tbody></table>
-<h3><code>asflicense_writexsl</code></h3>
+<h3 id="asflicense_writexsl"><code>asflicense_writexsl</code></h3>
 
 <ul>
 <li>Synopsis</li>
 </ul>
-
-<pre><code>asflicense_writexsl
+<pre class="highlight plaintext"><code>asflicense_writexsl
 </code></pre>
 
 <ul>
@@ -886,13 +869,12 @@
 <td style="text-align: left">No</td>
 </tr>
 </tbody></table>
-<h3><code>bugzilla_determine_issue</code></h3>
+<h3 id="bugzilla_determine_issue"><code>bugzilla_determine_issue</code></h3>
 
 <ul>
 <li>Synopsis</li>
 </ul>
-
-<pre><code>bugzilla_determine_issue
+<pre class="highlight plaintext"><code>bugzilla_determine_issue
 </code></pre>
 
 <ul>
@@ -923,13 +905,12 @@
 <td style="text-align: left">No</td>
 </tr>
 </tbody></table>
-<h3><code>bugzilla_http_fetch</code></h3>
+<h3 id="bugzilla_http_fetch"><code>bugzilla_http_fetch</code></h3>
 
 <ul>
 <li>Synopsis</li>
 </ul>
-
-<pre><code>bugzilla_http_fetch
+<pre class="highlight plaintext"><code>bugzilla_http_fetch
 </code></pre>
 
 <ul>
@@ -960,13 +941,12 @@
 <td style="text-align: left">No</td>
 </tr>
 </tbody></table>
-<h3><code>bugzilla_locate_patch</code></h3>
+<h3 id="bugzilla_locate_patch"><code>bugzilla_locate_patch</code></h3>
 
 <ul>
 <li>Synopsis</li>
 </ul>
-
-<pre><code>bugzilla_locate_patch
+<pre class="highlight plaintext"><code>bugzilla_locate_patch
 </code></pre>
 
 <ul>
@@ -997,13 +977,12 @@
 <td style="text-align: left">No</td>
 </tr>
 </tbody></table>
-<h3><code>bugzilla_parse_args</code></h3>
+<h3 id="bugzilla_parse_args"><code>bugzilla_parse_args</code></h3>
 
 <ul>
 <li>Synopsis</li>
 </ul>
-
-<pre><code>bugzilla_parse_args
+<pre class="highlight plaintext"><code>bugzilla_parse_args
 </code></pre>
 
 <ul>
@@ -1034,13 +1013,12 @@
 <td style="text-align: left">No</td>
 </tr>
 </tbody></table>
-<h3><code>bugzilla_usage</code></h3>
+<h3 id="bugzilla_usage"><code>bugzilla_usage</code></h3>
 
 <ul>
 <li>Synopsis</li>
 </ul>
-
-<pre><code>bugzilla_usage
+<pre class="highlight plaintext"><code>bugzilla_usage
 </code></pre>
 
 <ul>
@@ -1071,13 +1049,12 @@
 <td style="text-align: left">No</td>
 </tr>
 </tbody></table>
-<h3><code>cc_filefilter</code></h3>
+<h3 id="cc_filefilter"><code>cc_filefilter</code></h3>
 
 <ul>
 <li>Synopsis</li>
 </ul>
-
-<pre><code>cc_filefilter
+<pre class="highlight plaintext"><code>cc_filefilter
 </code></pre>
 
 <ul>
@@ -1108,13 +1085,12 @@
 <td style="text-align: left">No</td>
 </tr>
 </tbody></table>
-<h3><code>checkstyle_filefilter</code></h3>
+<h3 id="checkstyle_filefilter"><code>checkstyle_filefilter</code></h3>
 
 <ul>
 <li>Synopsis</li>
 </ul>
-
-<pre><code>checkstyle_filefilter
+<pre class="highlight plaintext"><code>checkstyle_filefilter
 </code></pre>
 
 <ul>
@@ -1145,13 +1121,12 @@
 <td style="text-align: left">No</td>
 </tr>
 </tbody></table>
-<h3><code>checkstyle_parse_args</code></h3>
+<h3 id="checkstyle_parse_args"><code>checkstyle_parse_args</code></h3>
 
 <ul>
 <li>Synopsis</li>
 </ul>
-
-<pre><code>checkstyle_parse_args
+<pre class="highlight plaintext"><code>checkstyle_parse_args
 </code></pre>
 
 <ul>
@@ -1182,13 +1157,12 @@
 <td style="text-align: left">No</td>
 </tr>
 </tbody></table>
-<h3><code>checkstyle_postapply</code></h3>
+<h3 id="checkstyle_postapply"><code>checkstyle_postapply</code></h3>
 
 <ul>
 <li>Synopsis</li>
 </ul>
-
-<pre><code>checkstyle_postapply
+<pre class="highlight plaintext"><code>checkstyle_postapply
 </code></pre>
 
 <ul>
@@ -1219,13 +1193,12 @@
 <td style="text-align: left">No</td>
 </tr>
 </tbody></table>
-<h3><code>checkstyle_postcompile</code></h3>
+<h3 id="checkstyle_postcompile"><code>checkstyle_postcompile</code></h3>
 
 <ul>
 <li>Synopsis</li>
 </ul>
-
-<pre><code>checkstyle_postcompile
+<pre class="highlight plaintext"><code>checkstyle_postcompile
 </code></pre>
 
 <ul>
@@ -1256,13 +1229,12 @@
 <td style="text-align: left">No</td>
 </tr>
 </tbody></table>
-<h3><code>checkstyle_preapply</code></h3>
+<h3 id="checkstyle_preapply"><code>checkstyle_preapply</code></h3>
 
 <ul>
 <li>Synopsis</li>
 </ul>
-
-<pre><code>checkstyle_preapply
+<pre class="highlight plaintext"><code>checkstyle_preapply
 </code></pre>
 
 <ul>
@@ -1293,13 +1265,12 @@
 <td style="text-align: left">No</td>
 </tr>
 </tbody></table>
-<h3><code>checkstyle_runner</code></h3>
+<h3 id="checkstyle_runner"><code>checkstyle_runner</code></h3>
 
 <ul>
 <li>Synopsis</li>
 </ul>
-
-<pre><code>checkstyle_runner
+<pre class="highlight plaintext"><code>checkstyle_runner
 </code></pre>
 
 <ul>
@@ -1330,13 +1301,12 @@
 <td style="text-align: left">No</td>
 </tr>
 </tbody></table>
-<h3><code>checkstyle_usage</code></h3>
+<h3 id="checkstyle_usage"><code>checkstyle_usage</code></h3>
 
 <ul>
 <li>Synopsis</li>
 </ul>
-
-<pre><code>checkstyle_usage
+<pre class="highlight plaintext"><code>checkstyle_usage
 </code></pre>
 
 <ul>
@@ -1367,13 +1337,12 @@
 <td style="text-align: left">No</td>
 </tr>
 </tbody></table>
-<h3><code>findbugs_filefilter</code></h3>
+<h3 id="findbugs_filefilter"><code>findbugs_filefilter</code></h3>
 
 <ul>
 <li>Synopsis</li>
 </ul>
-
-<pre><code>findbugs_filefilter
+<pre class="highlight plaintext"><code>findbugs_filefilter
 </code></pre>
 
 <ul>
@@ -1404,13 +1373,12 @@
 <td style="text-align: left">No</td>
 </tr>
 </tbody></table>
-<h3><code>findbugs_parse_args</code></h3>
+<h3 id="findbugs_parse_args"><code>findbugs_parse_args</code></h3>
 
 <ul>
 <li>Synopsis</li>
 </ul>
-
-<pre><code>findbugs_parse_args
+<pre class="highlight plaintext"><code>findbugs_parse_args
 </code></pre>
 
 <ul>
@@ -1441,13 +1409,12 @@
 <td style="text-align: left">No</td>
 </tr>
 </tbody></table>
-<h3><code>findbugs_rebuild</code></h3>
+<h3 id="findbugs_rebuild"><code>findbugs_rebuild</code></h3>
 
 <ul>
 <li>Synopsis</li>
 </ul>
-
-<pre><code>findbugs_rebuild
+<pre class="highlight plaintext"><code>findbugs_rebuild
 </code></pre>
 
 <ul>
@@ -1478,13 +1445,12 @@
 <td style="text-align: left">No</td>
 </tr>
 </tbody></table>
-<h3><code>findbugs_usage</code></h3>
+<h3 id="findbugs_usage"><code>findbugs_usage</code></h3>
 
 <ul>
 <li>Synopsis</li>
 </ul>
-
-<pre><code>findbugs_usage
+<pre class="highlight plaintext"><code>findbugs_usage
 </code></pre>
 
 <ul>
@@ -1515,13 +1481,12 @@
 <td style="text-align: left">No</td>
 </tr>
 </tbody></table>
-<h3><code>github_breakup_url</code></h3>
+<h3 id="github_breakup_url"><code>github_breakup_url</code></h3>
 
 <ul>
 <li>Synopsis</li>
 </ul>
-
-<pre><code>github_breakup_url url
+<pre class="highlight plaintext"><code>github_breakup_url url
 </code></pre>
 
 <ul>
@@ -1552,13 +1517,12 @@
 <td style="text-align: left">No</td>
 </tr>
 </tbody></table>
-<h3><code>github_determine_issue</code></h3>
+<h3 id="github_determine_issue"><code>github_determine_issue</code></h3>
 
 <ul>
 <li>Synopsis</li>
 </ul>
-
-<pre><code>github_determine_issue
+<pre class="highlight plaintext"><code>github_determine_issue
 </code></pre>
 
 <ul>
@@ -1589,13 +1553,12 @@
 <td style="text-align: left">No</td>
 </tr>
 </tbody></table>
-<h3><code>github_find_jira_title</code></h3>
+<h3 id="github_find_jira_title"><code>github_find_jira_title</code></h3>
 
 <ul>
 <li>Synopsis</li>
 </ul>
-
-<pre><code>github_find_jira_title
+<pre class="highlight plaintext"><code>github_find_jira_title
 </code></pre>
 
 <ul>
@@ -1626,13 +1589,12 @@
 <td style="text-align: left">No</td>
 </tr>
 </tbody></table>
-<h3><code>github_jira_bridge</code></h3>
+<h3 id="github_jira_bridge"><code>github_jira_bridge</code></h3>
 
 <ul>
 <li>Synopsis</li>
 </ul>
-
-<pre><code>github_jira_bridge
+<pre class="highlight plaintext"><code>github_jira_bridge
 </code></pre>
 
 <ul>
@@ -1663,13 +1625,12 @@
 <td style="text-align: left">No</td>
 </tr>
 </tbody></table>
-<h3><code>github_linecomments</code></h3>
+<h3 id="github_linecomments"><code>github_linecomments</code></h3>
 
 <ul>
 <li>Synopsis</li>
 </ul>
-
-<pre><code>github_linecomments
+<pre class="highlight plaintext"><code>github_linecomments
 </code></pre>
 
 <ul>
@@ -1700,13 +1661,12 @@
 <td style="text-align: left">No</td>
 </tr>
 </tbody></table>
-<h3><code>github_locate_patch</code></h3>
+<h3 id="github_locate_patch"><code>github_locate_patch</code></h3>
 
 <ul>
 <li>Synopsis</li>
 </ul>
-
-<pre><code>github_locate_patch
+<pre class="highlight plaintext"><code>github_locate_patch
 </code></pre>
 
 <ul>
@@ -1737,13 +1697,12 @@
 <td style="text-align: left">No</td>
 </tr>
 </tbody></table>
-<h3><code>github_parse_args</code></h3>
+<h3 id="github_parse_args"><code>github_parse_args</code></h3>
 
 <ul>
 <li>Synopsis</li>
 </ul>
-
-<pre><code>github_parse_args
+<pre class="highlight plaintext"><code>github_parse_args
 </code></pre>
 
 <ul>
@@ -1774,13 +1733,12 @@
 <td style="text-align: left">No</td>
 </tr>
 </tbody></table>
-<h3><code>github_usage</code></h3>
+<h3 id="github_usage"><code>github_usage</code></h3>
 
 <ul>
 <li>Synopsis</li>
 </ul>
-
-<pre><code>github_usage
+<pre class="highlight plaintext"><code>github_usage
 </code></pre>
 
 <ul>
@@ -1811,13 +1769,12 @@
 <td style="text-align: left">No</td>
 </tr>
 </tbody></table>
-<h3><code>gradle_buildfile</code></h3>
+<h3 id="gradle_buildfile"><code>gradle_buildfile</code></h3>
 
 <ul>
 <li>Synopsis</li>
 </ul>
-
-<pre><code>gradle_buildfile
+<pre class="highlight plaintext"><code>gradle_buildfile
 </code></pre>
 
 <ul>
@@ -1848,13 +1805,12 @@
 <td style="text-align: left">No</td>
 </tr>
 </tbody></table>
-<h3><code>gradle_builtin_personality_file_tests</code></h3>
+<h3 
id="gradle_builtin_personality_file_tests"><code>gradle_builtin_personality_file_tests</code></h3>
 
 <ul>
 <li>Synopsis</li>
 </ul>
-
-<pre><code>gradle_builtin_personality_file_tests
+<pre class="highlight plaintext"><code>gradle_builtin_personality_file_tests
 </code></pre>
 
 <ul>
@@ -1885,13 +1841,12 @@
 <td style="text-align: left">No</td>
 </tr>
 </tbody></table>
-<h3><code>gradle_builtin_personality_modules</code></h3>
+<h3 
id="gradle_builtin_personality_modules"><code>gradle_builtin_personality_modules</code></h3>
 
 <ul>
 <li>Synopsis</li>
 </ul>
-
-<pre><code>gradle_builtin_personality_modules
+<pre class="highlight plaintext"><code>gradle_builtin_personality_modules
 </code></pre>
 
 <ul>
@@ -1922,13 +1877,12 @@
 <td style="text-align: left">No</td>
 </tr>
 </tbody></table>
-<h3><code>gradle_docker_support</code></h3>
+<h3 id="gradle_docker_support"><code>gradle_docker_support</code></h3>
 
 <ul>
 <li>Synopsis</li>
 </ul>
-
-<pre><code>gradle_docker_support
+<pre class="highlight plaintext"><code>gradle_docker_support
 </code></pre>
 
 <ul>
@@ -1959,13 +1913,12 @@
 <td style="text-align: left">No</td>
 </tr>
 </tbody></table>
-<h3><code>gradle_executor</code></h3>
+<h3 id="gradle_executor"><code>gradle_executor</code></h3>
 
 <ul>
 <li>Synopsis</li>
 </ul>
-
-<pre><code>gradle_executor
+<pre class="highlight plaintext"><code>gradle_executor
 </code></pre>
 
 <ul>
@@ -1996,13 +1949,12 @@
 <td style="text-align: left">No</td>
 </tr>
 </tbody></table>
-<h3><code>gradle_filefilter</code></h3>
+<h3 id="gradle_filefilter"><code>gradle_filefilter</code></h3>
 
 <ul>
 <li>Synopsis</li>
 </ul>
-
-<pre><code>gradle_filefilter
+<pre class="highlight plaintext"><code>gradle_filefilter
 </code></pre>
 
 <ul>
@@ -2033,13 +1985,12 @@
 <td style="text-align: left">No</td>
 </tr>
 </tbody></table>
-<h3><code>gradle_initialize</code></h3>
+<h3 id="gradle_initialize"><code>gradle_initialize</code></h3>
 
 <ul>
 <li>Synopsis</li>
 </ul>
-
-<pre><code>gradle_initialize
+<pre class="highlight plaintext"><code>gradle_initialize
 </code></pre>
 
 <ul>
@@ -2070,13 +2021,12 @@
 <td style="text-align: left">No</td>
 </tr>
 </tbody></table>
-<h3><code>gradle_modules_worker</code></h3>
+<h3 id="gradle_modules_worker"><code>gradle_modules_worker</code></h3>
 
 <ul>
 <li>Synopsis</li>
 </ul>
-
-<pre><code>gradle_modules_worker
+<pre class="highlight plaintext"><code>gradle_modules_worker
 </code></pre>
 
 <ul>
@@ -2107,13 +2057,12 @@
 <td style="text-align: left">No</td>
 </tr>
 </tbody></table>
-<h3><code>gradle_parse_args</code></h3>
+<h3 id="gradle_parse_args"><code>gradle_parse_args</code></h3>
 
 <ul>
 <li>Synopsis</li>
 </ul>
-
-<pre><code>gradle_parse_args
+<pre class="highlight plaintext"><code>gradle_parse_args
 </code></pre>
 
 <ul>
@@ -2144,13 +2093,12 @@
 <td style="text-align: left">No</td>
 </tr>
 </tbody></table>
-<h3><code>gradle_usage</code></h3>
+<h3 id="gradle_usage"><code>gradle_usage</code></h3>
 
 <ul>
 <li>Synopsis</li>
 </ul>
-
-<pre><code>gradle_usage
+<pre class="highlight plaintext"><code>gradle_usage
 </code></pre>
 
 <ul>
@@ -2181,13 +2129,12 @@
 <td style="text-align: left">No</td>
 </tr>
 </tbody></table>
-<h3><code>initialize_java</code></h3>
+<h3 id="initialize_java"><code>initialize_java</code></h3>
 
 <ul>
 <li>Synopsis</li>
 </ul>
-
-<pre><code>initialize_java
+<pre class="highlight plaintext"><code>initialize_java
 </code></pre>
 
 <ul>
@@ -2218,13 +2165,12 @@
 <td style="text-align: left">No</td>
 </tr>
 </tbody></table>
-<h3><code>javac_filefilter</code></h3>
+<h3 id="javac_filefilter"><code>javac_filefilter</code></h3>
 
 <ul>
 <li>Synopsis</li>
 </ul>
-
-<pre><code>javac_filefilter
+<pre class="highlight plaintext"><code>javac_filefilter
 </code></pre>
 
 <ul>
@@ -2255,13 +2201,12 @@
 <td style="text-align: left">No</td>
 </tr>
 </tbody></table>
-<h3><code>javac_initialize</code></h3>
+<h3 id="javac_initialize"><code>javac_initialize</code></h3>
 
 <ul>
 <li>Synopsis</li>
 </ul>
-
-<pre><code>javac_initialize
+<pre class="highlight plaintext"><code>javac_initialize
 </code></pre>
 
 <ul>
@@ -2292,13 +2237,12 @@
 <td style="text-align: left">No</td>
 </tr>
 </tbody></table>
-<h3><code>javadoc_filefilter</code></h3>
+<h3 id="javadoc_filefilter"><code>javadoc_filefilter</code></h3>
 
 <ul>
 <li>Synopsis</li>
 </ul>
-
-<pre><code>javadoc_filefilter
+<pre class="highlight plaintext"><code>javadoc_filefilter
 </code></pre>
 
 <ul>
@@ -2329,13 +2273,12 @@
 <td style="text-align: left">No</td>
 </tr>
 </tbody></table>
-<h3><code>javadoc_initialize</code></h3>
+<h3 id="javadoc_initialize"><code>javadoc_initialize</code></h3>
 
 <ul>
 <li>Synopsis</li>
 </ul>
-
-<pre><code>javadoc_initialize
+<pre class="highlight plaintext"><code>javadoc_initialize
 </code></pre>
 
 <ul>
@@ -2366,13 +2309,12 @@
 <td style="text-align: left">No</td>
 </tr>
 </tbody></table>
-<h3><code>jira_determine_issue</code></h3>
+<h3 id="jira_determine_issue"><code>jira_determine_issue</code></h3>
 
 <ul>
 <li>Synopsis</li>
 </ul>
-
-<pre><code>jira_determine_issue
+<pre class="highlight plaintext"><code>jira_determine_issue
 </code></pre>
 
 <ul>
@@ -2403,13 +2345,12 @@
 <td style="text-align: left">No</td>
 </tr>
 </tbody></table>
-<h3><code>jira_http_fetch</code></h3>
+<h3 id="jira_http_fetch"><code>jira_http_fetch</code></h3>
 
 <ul>
 <li>Synopsis</li>
 </ul>
-
-<pre><code>jira_http_fetch
+<pre class="highlight plaintext"><code>jira_http_fetch
 </code></pre>
 
 <ul>
@@ -2440,13 +2381,12 @@
 <td style="text-align: left">No</td>
 </tr>
 </tbody></table>
-<h3><code>jira_locate_patch</code></h3>
+<h3 id="jira_locate_patch"><code>jira_locate_patch</code></h3>
 
 <ul>
 <li>Synopsis</li>
 </ul>
-
-<pre><code>jira_locate_patch
+<pre class="highlight plaintext"><code>jira_locate_patch
 </code></pre>
 
 <ul>
@@ -2477,13 +2417,12 @@
 <td style="text-align: left">No</td>
 </tr>
 </tbody></table>
-<h3><code>jira_parse_args</code></h3>
+<h3 id="jira_parse_args"><code>jira_parse_args</code></h3>
 
 <ul>
 <li>Synopsis</li>
 </ul>
-
-<pre><code>jira_parse_args
+<pre class="highlight plaintext"><code>jira_parse_args
 </code></pre>
 
 <ul>
@@ -2514,13 +2453,12 @@
 <td style="text-align: left">No</td>
 </tr>
 </tbody></table>
-<h3><code>jira_usage</code></h3>
+<h3 id="jira_usage"><code>jira_usage</code></h3>
 
 <ul>
 <li>Synopsis</li>
 </ul>
-
-<pre><code>jira_usage
+<pre class="highlight plaintext"><code>jira_usage
 </code></pre>
 
 <ul>
@@ -2551,13 +2489,12 @@
 <td style="text-align: left">No</td>
 </tr>
 </tbody></table>
-<h3><code>junit_finalize_results</code></h3>
+<h3 id="junit_finalize_results"><code>junit_finalize_results</code></h3>
 
 <ul>
 <li>Synopsis</li>
 </ul>
-
-<pre><code>junit_finalize_results
+<pre class="highlight plaintext"><code>junit_finalize_results
 </code></pre>
 
 <ul>
@@ -2588,13 +2525,12 @@
 <td style="text-align: left">No</td>
 </tr>
 </tbody></table>
-<h3><code>junit_process_tests</code></h3>
+<h3 id="junit_process_tests"><code>junit_process_tests</code></h3>
 
 <ul>
 <li>Synopsis</li>
 </ul>
-
-<pre><code>junit_process_tests
+<pre class="highlight plaintext"><code>junit_process_tests
 </code></pre>
 
 <ul>
@@ -2625,13 +2561,12 @@
 <td style="text-align: left">No</td>
 </tr>
 </tbody></table>
-<h3><code>maven_buildfile</code></h3>
+<h3 id="maven_buildfile"><code>maven_buildfile</code></h3>
 
 <ul>
 <li>Synopsis</li>
 </ul>
-
-<pre><code>maven_buildfile
+<pre class="highlight plaintext"><code>maven_buildfile
 </code></pre>
 
 <ul>
@@ -2662,13 +2597,12 @@
 <td style="text-align: left">No</td>
 </tr>
 </tbody></table>
-<h3><code>maven_builtin_personality_file_tests</code></h3>
+<h3 
id="maven_builtin_personality_file_tests"><code>maven_builtin_personality_file_tests</code></h3>
 
 <ul>
 <li>Synopsis</li>
 </ul>
-
-<pre><code>maven_builtin_personality_file_tests
+<pre class="highlight plaintext"><code>maven_builtin_personality_file_tests
 </code></pre>
 
 <ul>
@@ -2699,13 +2633,12 @@
 <td style="text-align: left">No</td>
 </tr>
 </tbody></table>
-<h3><code>maven_builtin_personality_modules</code></h3>
+<h3 
id="maven_builtin_personality_modules"><code>maven_builtin_personality_modules</code></h3>
 
 <ul>
 <li>Synopsis</li>
 </ul>
-
-<pre><code>maven_builtin_personality_modules
+<pre class="highlight plaintext"><code>maven_builtin_personality_modules
 </code></pre>
 
 <ul>
@@ -2736,13 +2669,12 @@
 <td style="text-align: left">No</td>
 </tr>
 </tbody></table>
-<h3><code>maven_docker_support</code></h3>
+<h3 id="maven_docker_support"><code>maven_docker_support</code></h3>
 
 <ul>
 <li>Synopsis</li>
 </ul>
-
-<pre><code>maven_docker_support
+<pre class="highlight plaintext"><code>maven_docker_support
 </code></pre>
 
 <ul>
@@ -2773,13 +2705,12 @@
 <td style="text-align: left">No</td>
 </tr>
 </tbody></table>
-<h3><code>maven_executor</code></h3>
+<h3 id="maven_executor"><code>maven_executor</code></h3>
 
 <ul>
 <li>Synopsis</li>
 </ul>
-
-<pre><code>maven_executor
+<pre class="highlight plaintext"><code>maven_executor
 </code></pre>
 
 <ul>
@@ -2810,13 +2741,12 @@
 <td style="text-align: left">No</td>
 </tr>
 </tbody></table>
-<h3><code>maven_filefilter</code></h3>
+<h3 id="maven_filefilter"><code>maven_filefilter</code></h3>
 
 <ul>
 <li>Synopsis</li>
 </ul>
-
-<pre><code>maven_filefilter
+<pre class="highlight plaintext"><code>maven_filefilter
 </code></pre>
 
 <ul>
@@ -2847,13 +2777,12 @@
 <td style="text-align: left">No</td>
 </tr>
 </tbody></table>
-<h3><code>maven_initialize</code></h3>
+<h3 id="maven_initialize"><code>maven_initialize</code></h3>
 
 <ul>
 <li>Synopsis</li>
 </ul>
-
-<pre><code>maven_initialize
+<pre class="highlight plaintext"><code>maven_initialize
 </code></pre>
 
 <ul>
@@ -2884,13 +2813,12 @@
 <td style="text-align: left">No</td>
 </tr>
 </tbody></table>
-<h3><code>maven_javac_logfilter</code></h3>
+<h3 id="maven_javac_logfilter"><code>maven_javac_logfilter</code></h3>
 
 <ul>
 <li>Synopsis</li>
 </ul>
-
-<pre><code>maven_javac_logfilter
+<pre class="highlight plaintext"><code>maven_javac_logfilter
 </code></pre>
 
 <ul>
@@ -2921,13 +2849,12 @@
 <td style="text-align: left">No</td>
 </tr>
 </tbody></table>
-<h3><code>maven_modules_worker</code></h3>
+<h3 id="maven_modules_worker"><code>maven_modules_worker</code></h3>
 
 <ul>
 <li>Synopsis</li>
 </ul>
-
-<pre><code>maven_modules_worker
+<pre class="highlight plaintext"><code>maven_modules_worker
 </code></pre>
 
 <ul>
@@ -2958,13 +2885,12 @@
 <td style="text-align: left">No</td>
 </tr>
 </tbody></table>
-<h3><code>maven_parse_args</code></h3>
+<h3 id="maven_parse_args"><code>maven_parse_args</code></h3>
 
 <ul>
 <li>Synopsis</li>
 </ul>
-
-<pre><code>maven_parse_args
+<pre class="highlight plaintext"><code>maven_parse_args
 </code></pre>
 
 <ul>
@@ -2995,13 +2921,12 @@
 <td style="text-align: left">No</td>
 </tr>
 </tbody></table>
-<h3><code>maven_precheck</code></h3>
+<h3 id="maven_precheck"><code>maven_precheck</code></h3>
 
 <ul>
 <li>Synopsis</li>
 </ul>
-
-<pre><code>maven_precheck
+<pre class="highlight plaintext"><code>maven_precheck
 </code></pre>
 
 <ul>
@@ -3032,13 +2957,12 @@
 <td style="text-align: left">No</td>
 </tr>
 </tbody></table>
-<h3><code>maven_usage</code></h3>
+<h3 id="maven_usage"><code>maven_usage</code></h3>
 
 <ul>
 <li>Synopsis</li>
 </ul>
-
-<pre><code>maven_usage
+<pre class="highlight plaintext"><code>maven_usage
 </code></pre>
 
 <ul>
@@ -3069,13 +2993,12 @@
 <td style="text-align: left">No</td>
 </tr>
 </tbody></table>
-<h3><code>mvnsite_filefilter</code></h3>
+<h3 id="mvnsite_filefilter"><code>mvnsite_filefilter</code></h3>
 
 <ul>
 <li>Synopsis</li>
 </ul>
-
-<pre><code>mvnsite_filefilter
+<pre class="highlight plaintext"><code>mvnsite_filefilter
 </code></pre>
 
 <ul>
@@ -3106,13 +3029,12 @@
 <td style="text-align: left">No</td>
 </tr>
 </tbody></table>
-<h3><code>nobuild_buildfile</code></h3>
+<h3 id="nobuild_buildfile"><code>nobuild_buildfile</code></h3>
 
 <ul>
 <li>Synopsis</li>
 </ul>
-
-<pre><code>nobuild_buildfile
+<pre class="highlight plaintext"><code>nobuild_buildfile
 </code></pre>
 
 <ul>
@@ -3143,13 +3065,12 @@
 <td style="text-align: left">No</td>
 </tr>
 </tbody></table>
-<h3><code>nobuild_builtin_personality_file_tests</code></h3>
+<h3 
id="nobuild_builtin_personality_file_tests"><code>nobuild_builtin_personality_file_tests</code></h3>
 
 <ul>
 <li>Synopsis</li>
 </ul>
-
-<pre><code>nobuild_builtin_personality_file_tests
+<pre class="highlight plaintext"><code>nobuild_builtin_personality_file_tests
 </code></pre>
 
 <ul>
@@ -3180,13 +3101,12 @@
 <td style="text-align: left">No</td>
 </tr>
 </tbody></table>
-<h3><code>nobuild_builtin_personality_modules</code></h3>
+<h3 
id="nobuild_builtin_personality_modules"><code>nobuild_builtin_personality_modules</code></h3>
 
 <ul>
 <li>Synopsis</li>
 </ul>
-
-<pre><code>nobuild_builtin_personality_modules
+<pre class="highlight plaintext"><code>nobuild_builtin_personality_modules
 </code></pre>
 
 <ul>
@@ -3217,13 +3137,12 @@
 <td style="text-align: left">No</td>
 </tr>
 </tbody></table>
-<h3><code>nobuild_executor</code></h3>
+<h3 id="nobuild_executor"><code>nobuild_executor</code></h3>
 
 <ul>
 <li>Synopsis</li>
 </ul>
-
-<pre><code>nobuild_executor
+<pre class="highlight plaintext"><code>nobuild_executor
 </code></pre>
 
 <ul>
@@ -3254,13 +3173,12 @@
 <td style="text-align: left">No</td>
 </tr>
 </tbody></table>
-<h3><code>nobuild_modules_worker</code></h3>
+<h3 id="nobuild_modules_worker"><code>nobuild_modules_worker</code></h3>
 
 <ul>
 <li>Synopsis</li>
 </ul>
-
-<pre><code>nobuild_modules_worker
+<pre class="highlight plaintext"><code>nobuild_modules_worker
 </code></pre>
 
 <ul>
@@ -3291,13 +3209,12 @@
 <td style="text-align: left">No</td>
 </tr>
 </tbody></table>
-<h3><code>perlcritic_filefilter</code></h3>
+<h3 id="perlcritic_filefilter"><code>perlcritic_filefilter</code></h3>
 
 <ul>
 <li>Synopsis</li>
 </ul>
-
-<pre><code>perlcritic_filefilter
+<pre class="highlight plaintext"><code>perlcritic_filefilter
 </code></pre>
 
 <ul>
@@ -3328,13 +3245,12 @@
 <td style="text-align: left">No</td>
 </tr>
 </tbody></table>
-<h3><code>perlcritic_parse_args</code></h3>
+<h3 id="perlcritic_parse_args"><code>perlcritic_parse_args</code></h3>
 
 <ul>
 <li>Synopsis</li>
 </ul>
-
-<pre><code>perlcritic_parse_args
+<pre class="highlight plaintext"><code>perlcritic_parse_args
 </code></pre>
 
 <ul>
@@ -3365,13 +3281,12 @@
 <td style="text-align: left">No</td>
 </tr>
 </tbody></table>
-<h3><code>perlcritic_postapply</code></h3>
+<h3 id="perlcritic_postapply"><code>perlcritic_postapply</code></h3>
 
 <ul>
 <li>Synopsis</li>
 </ul>
-
-<pre><code>perlcritic_postapply
+<pre class="highlight plaintext"><code>perlcritic_postapply
 </code></pre>
 
 <ul>
@@ -3402,13 +3317,12 @@
 <td style="text-align: left">No</td>
 </tr>
 </tbody></table>
-<h3><code>perlcritic_postcompile</code></h3>
+<h3 id="perlcritic_postcompile"><code>perlcritic_postcompile</code></h3>
 
 <ul>
 <li>Synopsis</li>
 </ul>
-
-<pre><code>perlcritic_postcompile
+<pre class="highlight plaintext"><code>perlcritic_postcompile
 </code></pre>
 
 <ul>
@@ -3439,13 +3353,12 @@
 <td style="text-align: left">No</td>
 </tr>
 </tbody></table>
-<h3><code>perlcritic_preapply</code></h3>
+<h3 id="perlcritic_preapply"><code>perlcritic_preapply</code></h3>
 
 <ul>
 <li>Synopsis</li>
 </ul>
-
-<pre><code>perlcritic_preapply
+<pre class="highlight plaintext"><code>perlcritic_preapply
 </code></pre>
 
 <ul>
@@ -3476,13 +3389,12 @@
 <td style="text-align: left">No</td>
 </tr>
 </tbody></table>
-<h3><code>perlcritic_usage</code></h3>
+<h3 id="perlcritic_usage"><code>perlcritic_usage</code></h3>
 
 <ul>
 <li>Synopsis</li>
 </ul>
-
-<pre><code>perlcritic_usage
+<pre class="highlight plaintext"><code>perlcritic_usage
 </code></pre>
 
 <ul>
@@ -3513,13 +3425,12 @@
 <td style="text-align: left">No</td>
 </tr>
 </tbody></table>
-<h3><code>pylint_filefilter</code></h3>
+<h3 id="pylint_filefilter"><code>pylint_filefilter</code></h3>
 
 <ul>
 <li>Synopsis</li>
 </ul>
-
-<pre><code>pylint_filefilter
+<pre class="highlight plaintext"><code>pylint_filefilter
 </code></pre>
 
 <ul>
@@ -3550,13 +3461,12 @@
 <td style="text-align: left">No</td>
 </tr>
 </tbody></table>
-<h3><code>pylint_parse_args</code></h3>
+<h3 id="pylint_parse_args"><code>pylint_parse_args</code></h3>
 
 <ul>
 <li>Synopsis</li>
 </ul>
-
-<pre><code>pylint_parse_args
+<pre class="highlight plaintext"><code>pylint_parse_args
 </code></pre>
 
 <ul>
@@ -3587,13 +3497,12 @@
 <td style="text-align: left">No</td>
 </tr>
 </tbody></table>
-<h3><code>pylint_postapply</code></h3>
+<h3 id="pylint_postapply"><code>pylint_postapply</code></h3>
 
 <ul>
 <li>Synopsis</li>
 </ul>
-
-<pre><code>pylint_postapply
+<pre class="highlight plaintext"><code>pylint_postapply
 </code></pre>
 
 <ul>
@@ -3624,13 +3533,12 @@
 <td style="text-align: left">No</td>
 </tr>
 </tbody></table>
-<h3><code>pylint_postcompile</code></h3>
+<h3 id="pylint_postcompile"><code>pylint_postcompile</code></h3>
 
 <ul>
 <li>Synopsis</li>
 </ul>
-
-<pre><code>pylint_postcompile
+<pre class="highlight plaintext"><code>pylint_postcompile
 </code></pre>
 
 <ul>
@@ -3661,13 +3569,12 @@
 <td style="text-align: left">No</td>
 </tr>
 </tbody></table>
-<h3><code>pylint_preapply</code></h3>
+<h3 id="pylint_preapply"><code>pylint_preapply</code></h3>
 
 <ul>
 <li>Synopsis</li>
 </ul>
-
-<pre><code>pylint_preapply
+<pre class="highlight plaintext"><code>pylint_preapply
 </code></pre>
 
 <ul>
@@ -3698,13 +3605,12 @@
 <td style="text-align: left">No</td>
 </tr>
 </tbody></table>
-<h3><code>pylint_usage</code></h3>
+<h3 id="pylint_usage"><code>pylint_usage</code></h3>
 
 <ul>
 <li>Synopsis</li>
 </ul>
-
-<pre><code>pylint_usage
+<pre class="highlight plaintext"><code>pylint_usage
 </code></pre>
 
 <ul>
@@ -3735,13 +3641,12 @@
 <td style="text-align: left">No</td>
 </tr>
 </tbody></table>
-<h3><code>rubocop_filefilter</code></h3>
+<h3 id="rubocop_filefilter"><code>rubocop_filefilter</code></h3>
 
 <ul>
 <li>Synopsis</li>
 </ul>
-
-<pre><code>rubocop_filefilter
+<pre class="highlight plaintext"><code>rubocop_filefilter
 </code></pre>
 
 <ul>
@@ -3772,13 +3677,12 @@
 <td style="text-align: left">No</td>
 </tr>
 </tbody></table>
-<h3><code>rubocop_parse_args</code></h3>
+<h3 id="rubocop_parse_args"><code>rubocop_parse_args</code></h3>
 
 <ul>
 <li>Synopsis</li>
 </ul>
-
-<pre><code>rubocop_parse_args
+<pre class="highlight plaintext"><code>rubocop_parse_args
 </code></pre>
 
 <ul>
@@ -3809,13 +3713,12 @@
 <td style="text-align: left">No</td>
 </tr>
 </tbody></table>
-<h3><code>rubocop_postapply</code></h3>
+<h3 id="rubocop_postapply"><code>rubocop_postapply</code></h3>
 
 <ul>
 <li>Synopsis</li>
 </ul>
-
-<pre><code>rubocop_postapply
+<pre class="highlight plaintext"><code>rubocop_postapply
 </code></pre>
 
 <ul>
@@ -3846,13 +3749,12 @@
 <td style="text-align: left">No</td>
 </tr>
 </tbody></table>
-<h3><code>rubocop_postcompile</code></h3>
+<h3 id="rubocop_postcompile"><code>rubocop_postcompile</code></h3>
 
 <ul>
 <li>Synopsis</li>
 </ul>
-
-<pre><code>rubocop_postcompile
+<pre class="highlight plaintext"><code>rubocop_postcompile
 </code></pre>
 
 <ul>
@@ -3883,13 +3785,12 @@
 <td style="text-align: left">No</td>
 </tr>
 </tbody></table>
-<h3><code>rubocop_preapply</code></h3>
+<h3 id="rubocop_preapply"><code>rubocop_preapply</code></h3>
 
 <ul>
 <li>Synopsis</li>
 </ul>
-
-<pre><code>rubocop_preapply
+<pre class="highlight plaintext"><code>rubocop_preapply
 </code></pre>
 
 <ul>
@@ -3920,13 +3821,12 @@
 <td style="text-align: left">No</td>
 </tr>
 </tbody></table>
-<h3><code>rubocop_usage</code></h3>
+<h3 id="rubocop_usage"><code>rubocop_usage</code></h3>
 
 <ul>
 <li>Synopsis</li>
 </ul>
-
-<pre><code>rubocop_usage
+<pre class="highlight plaintext"><code>rubocop_usage
 </code></pre>
 
 <ul>
@@ -3957,13 +3857,12 @@
 <td style="text-align: left">No</td>
 </tr>
 </tbody></table>
-<h3><code>ruby_lint_filefilter</code></h3>
+<h3 id="ruby_lint_filefilter"><code>ruby_lint_filefilter</code></h3>
 
 <ul>
 <li>Synopsis</li>
 </ul>
-
-<pre><code>ruby_lint_filefilter
+<pre class="highlight plaintext"><code>ruby_lint_filefilter
 </code></pre>
 
 <ul>
@@ -3994,13 +3893,12 @@
 <td style="text-align: left">No</td>
 </tr>
 </tbody></table>
-<h3><code>ruby_lint_parse_args</code></h3>
+<h3 id="ruby_lint_parse_args"><code>ruby_lint_parse_args</code></h3>
 
 <ul>
 <li>Synopsis</li>
 </ul>
-
-<pre><code>ruby_lint_parse_args
+<pre class="highlight plaintext"><code>ruby_lint_parse_args
 </code></pre>
 
 <ul>
@@ -4031,13 +3929,12 @@
 <td style="text-align: left">No</td>
 </tr>
 </tbody></table>
-<h3><code>ruby_lint_postapply</code></h3>
+<h3 id="ruby_lint_postapply"><code>ruby_lint_postapply</code></h3>
 
 <ul>
 <li>Synopsis</li>
 </ul>
-
-<pre><code>ruby_lint_postapply
+<pre class="highlight plaintext"><code>ruby_lint_postapply
 </code></pre>
 
 <ul>
@@ -4068,13 +3965,12 @@
 <td style="text-align: left">No</td>
 </tr>
 </tbody></table>
-<h3><code>ruby_lint_postcompile</code></h3>
+<h3 id="ruby_lint_postcompile"><code>ruby_lint_postcompile</code></h3>
 
 <ul>
 <li>Synopsis</li>
 </ul>
-
-<pre><code>ruby_lint_postcompile
+<pre class="highlight plaintext"><code>ruby_lint_postcompile
 </code></pre>
 
 <ul>
@@ -4105,13 +4001,12 @@
 <td style="text-align: left">No</td>
 </tr>
 </tbody></table>
-<h3><code>ruby_lint_preapply</code></h3>
+<h3 id="ruby_lint_preapply"><code>ruby_lint_preapply</code></h3>
 
 <ul>
 <li>Synopsis</li>
 </ul>
-
-<pre><code>ruby_lint_preapply
+<pre class="highlight plaintext"><code>ruby_lint_preapply
 </code></pre>
 
 <ul>
@@ -4142,13 +4037,12 @@
 <td style="text-align: left">No</td>
 </tr>
 </tbody></table>
-<h3><code>ruby_lint_usage</code></h3>
+<h3 id="ruby_lint_usage"><code>ruby_lint_usage</code></h3>
 
 <ul>
 <li>Synopsis</li>
 </ul>
-
-<pre><code>ruby_lint_usage
+<pre class="highlight plaintext"><code>ruby_lint_usage
 </code></pre>
 
 <ul>
@@ -4179,13 +4073,12 @@
 <td style="text-align: left">No</td>
 </tr>
 </tbody></table>
-<h3><code>scalac_filefilter</code></h3>
+<h3 id="scalac_filefilter"><code>scalac_filefilter</code></h3>
 
 <ul>
 <li>Synopsis</li>
 </ul>
-
-<pre><code>scalac_filefilter
+<pre class="highlight plaintext"><code>scalac_filefilter
 </code></pre>
 
 <ul>
@@ -4216,13 +4109,12 @@
 <td style="text-align: left">No</td>
 </tr>
 </tbody></table>
-<h3><code>scaladoc_filefilter</code></h3>
+<h3 id="scaladoc_filefilter"><code>scaladoc_filefilter</code></h3>
 
 <ul>
 <li>Synopsis</li>
 </ul>
-
-<pre><code>scaladoc_filefilter
+<pre class="highlight plaintext"><code>scaladoc_filefilter
 </code></pre>
 
 <ul>
@@ -4253,13 +4145,12 @@
 <td style="text-align: left">No</td>
 </tr>
 </tbody></table>
-<h3><code>shellcheck_filefilter</code></h3>
+<h3 id="shellcheck_filefilter"><code>shellcheck_filefilter</code></h3>
 
 <ul>
 <li>Synopsis</li>
 </ul>
-
-<pre><code>shellcheck_filefilter
+<pre class="highlight plaintext"><code>shellcheck_filefilter
 </code></pre>
 
 <ul>
@@ -4290,13 +4181,12 @@
 <td style="text-align: left">No</td>
 </tr>
 </tbody></table>
-<h3><code>shellcheck_postapply</code></h3>
+<h3 id="shellcheck_postapply"><code>shellcheck_postapply</code></h3>
 
 <ul>
 <li>Synopsis</li>
 </ul>
-
-<pre><code>shellcheck_postapply
+<pre class="highlight plaintext"><code>shellcheck_postapply
 </code></pre>
 
 <ul>
@@ -4327,13 +4217,12 @@
 <td style="text-align: left">No</td>
 </tr>
 </tbody></table>
-<h3><code>shellcheck_postcompile</code></h3>
+<h3 id="shellcheck_postcompile"><code>shellcheck_postcompile</code></h3>
 
 <ul>
 <li>Synopsis</li>
 </ul>
-
-<pre><code>shellcheck_postcompile
+<pre class="highlight plaintext"><code>shellcheck_postcompile
 </code></pre>
 
 <ul>
@@ -4364,13 +4253,12 @@
 <td style="text-align: left">No</td>
 </tr>
 </tbody></table>
-<h3><code>shellcheck_preapply</code></h3>
+<h3 id="shellcheck_preapply"><code>shellcheck_preapply</code></h3>
 
 <ul>
 <li>Synopsis</li>
 </ul>
-
-<pre><code>shellcheck_preapply
+<pre class="highlight plaintext"><code>shellcheck_preapply
 </code></pre>
 
 <ul>
@@ -4401,13 +4289,12 @@
 <td style="text-align: left">No</td>
 </tr>
 </tbody></table>
-<h3><code>shellcheck_private_findbash</code></h3>
+<h3 
id="shellcheck_private_findbash"><code>shellcheck_private_findbash</code></h3>
 
 <ul>
 <li>Synopsis</li>
 </ul>
-
-<pre><code>shellcheck_private_findbash
+<pre class="highlight plaintext"><code>shellcheck_private_findbash
 </code></pre>
 
 <ul>
@@ -4438,13 +4325,12 @@
 <td style="text-align: left">No</td>
 </tr>
 </tbody></table>
-<h3><code>tap_finalize_results</code></h3>
+<h3 id="tap_finalize_results"><code>tap_finalize_results</code></h3>
 
 <ul>
 <li>Synopsis</li>
 </ul>
-
-<pre><code>tap_finalize_results
+<pre class="highlight plaintext"><code>tap_finalize_results
 </code></pre>
 
 <ul>
@@ -4475,13 +4361,12 @@
 <td style="text-align: left">No</td>
 </tr>
 </tbody></table>
-<h3><code>tap_parse_args</code></h3>
+<h3 id="tap_parse_args"><code>tap_parse_args</code></h3>
 
 <ul>
 <li>Synopsis</li>
 </ul>
-
-<pre><code>tap_parse_args
+<pre class="highlight plaintext"><code>tap_parse_args
 </code></pre>
 
 <ul>
@@ -4512,13 +4397,12 @@
 <td style="text-align: left">No</td>
 </tr>
 </tbody></table>
-<h3><code>tap_process_tests</code></h3>
+<h3 id="tap_process_tests"><code>tap_process_tests</code></h3>
 
 <ul>
 <li>Synopsis</li>
 </ul>
-
-<pre><code>tap_process_tests
+<pre class="highlight plaintext"><code>tap_process_tests
 </code></pre>
 
 <ul>
@@ -4549,13 +4433,12 @@
 <td style="text-align: left">No</td>
 </tr>
 </tbody></table>
-<h3><code>tap_usage</code></h3>
+<h3 id="tap_usage"><code>tap_usage</code></h3>
 
 <ul>
 <li>Synopsis</li>
 </ul>
-
-<pre><code>tap_usage
+<pre class="highlight plaintext"><code>tap_usage
 </code></pre>
 
 <ul>
@@ -4586,13 +4469,12 @@
 <td style="text-align: left">No</td>
 </tr>
 </tbody></table>
-<h3><code>whitespace_linecomment_reporter</code></h3>
+<h3 
id="whitespace_linecomment_reporter"><code>whitespace_linecomment_reporter</code></h3>
 
 <ul>
 <li>Synopsis</li>
 </ul>
-
-<pre><code>whitespace_linecomment_reporter
+<pre class="highlight plaintext"><code>whitespace_linecomment_reporter
 </code></pre>
 
 <ul>
@@ -4623,13 +4505,12 @@
 <td style="text-align: left">No</td>
 </tr>
 </tbody></table>
-<h3><code>whitespace_postcompile</code></h3>
+<h3 id="whitespace_postcompile"><code>whitespace_postcompile</code></h3>
 
 <ul>
 <li>Synopsis</li>
 </ul>
-
-<pre><code>whitespace_postcompile
+<pre class="highlight plaintext"><code>whitespace_postcompile
 </code></pre>
 
 <ul>
@@ -4660,13 +4541,12 @@
 <td style="text-align: left">No</td>
 </tr>
 </tbody></table>
-<h3><code>xml_filefilter</code></h3>
+<h3 id="xml_filefilter"><code>xml_filefilter</code></h3>
 
 <ul>
 <li>Synopsis</li>
 </ul>
-
-<pre><code>xml_filefilter
+<pre class="highlight plaintext"><code>xml_filefilter
 </code></pre>
 
 <ul>
@@ -4697,13 +4577,12 @@
 <td style="text-align: left">No</td>
 </tr>
 </tbody></table>
-<h3><code>xml_postcompile</code></h3>
+<h3 id="xml_postcompile"><code>xml_postcompile</code></h3>
 
 <ul>
 <li>Synopsis</li>
 </ul>
-
-<pre><code>xml_postcompile
+<pre class="highlight plaintext"><code>xml_postcompile
 </code></pre>
 
 <ul>

http://git-wip-us.apache.org/repos/asf/yetus/blob/21be113e/documentation/0.1.0/precommit-apidocs/smart-apply-patch/index.html
----------------------------------------------------------------------
diff --git a/documentation/0.1.0/precommit-apidocs/smart-apply-patch/index.html 
b/documentation/0.1.0/precommit-apidocs/smart-apply-patch/index.html
index 81c0b90..c2efeef 100644
--- a/documentation/0.1.0/precommit-apidocs/smart-apply-patch/index.html
+++ b/documentation/0.1.0/precommit-apidocs/smart-apply-patch/index.html
@@ -136,15 +136,14 @@
 
 <hr>
 
-<h2>Public/Stable/Not Replaceable</h2>
+<h2 id="public-stable-not-replaceable">Public/Stable/Not Replaceable</h2>
 
-<h3><code>setup_defaults</code></h3>
+<h3 id="setup_defaults"><code>setup_defaults</code></h3>
 
 <ul>
 <li>Synopsis</li>
 </ul>
-
-<pre><code>setup_defaults
+<pre class="highlight plaintext"><code>setup_defaults
 </code></pre>
 
 <ul>
@@ -175,13 +174,12 @@
 <td style="text-align: left">No</td>
 </tr>
 </tbody></table>
-<h3><code>yetus_usage</code></h3>
+<h3 id="yetus_usage"><code>yetus_usage</code></h3>
 
 <ul>
 <li>Synopsis</li>
 </ul>
-
-<pre><code>yetus_usage
+<pre class="highlight plaintext"><code>yetus_usage
 </code></pre>
 
 <ul>
@@ -212,15 +210,14 @@
 <td style="text-align: left">No</td>
 </tr>
 </tbody></table>
-<h2>None/None/Not Replaceable</h2>
+<h2 id="none-none-not-replaceable">None/None/Not Replaceable</h2>
 
-<h3><code>add_footer_table</code></h3>
+<h3 id="add_footer_table"><code>add_footer_table</code></h3>
 
 <ul>
 <li>Synopsis</li>
 </ul>
-
-<pre><code>add_footer_table
+<pre class="highlight plaintext"><code>add_footer_table
 </code></pre>
 
 <ul>
@@ -251,13 +248,12 @@
 <td style="text-align: left">No</td>
 </tr>
 </tbody></table>
-<h3><code>add_test</code></h3>
+<h3 id="add_test"><code>add_test</code></h3>
 
 <ul>
 <li>Synopsis</li>
 </ul>
-
-<pre><code>add_test
+<pre class="highlight plaintext"><code>add_test
 </code></pre>
 
 <ul>
@@ -288,13 +284,12 @@
 <td style="text-align: left">No</td>
 </tr>
 </tbody></table>
-<h3><code>add_vote_table</code></h3>
+<h3 id="add_vote_table"><code>add_vote_table</code></h3>
 
 <ul>
 <li>Synopsis</li>
 </ul>
-
-<pre><code>add_vote_table
+<pre class="highlight plaintext"><code>add_vote_table
 </code></pre>
 
 <ul>
@@ -325,13 +320,12 @@
 <td style="text-align: left">No</td>
 </tr>
 </tbody></table>
-<h3><code>big_console_header</code></h3>
+<h3 id="big_console_header"><code>big_console_header</code></h3>
 
 <ul>
 <li>Synopsis</li>
 </ul>
-
-<pre><code>big_console_header
+<pre class="highlight plaintext"><code>big_console_header
 </code></pre>
 
 <ul>

http://git-wip-us.apache.org/repos/asf/yetus/blob/21be113e/documentation/0.1.0/precommit-apidocs/test-patch/index.html
----------------------------------------------------------------------
diff --git a/documentation/0.1.0/precommit-apidocs/test-patch/index.html 
b/documentation/0.1.0/precommit-apidocs/test-patch/index.html
index 5caa814..0ca8066 100644
--- a/documentation/0.1.0/precommit-apidocs/test-patch/index.html
+++ b/documentation/0.1.0/precommit-apidocs/test-patch/index.html
@@ -179,15 +179,14 @@
 
 <hr>
 
-<h2>Public/Stable/Replaceable</h2>
+<h2 id="public-stable-replaceable">Public/Stable/Replaceable</h2>
 
-<h3><code>relative_dir</code></h3>
+<h3 id="relative_dir"><code>relative_dir</code></h3>
 
 <ul>
 <li>Synopsis</li>
 </ul>
-
-<pre><code>relative_dir path
+<pre class="highlight plaintext"><code>relative_dir path
 </code></pre>
 
 <ul>
@@ -220,13 +219,12 @@
 <td style="text-align: left">Yes</td>
 </tr>
 </tbody></table>
-<h3><code>verify_multijdk_test</code></h3>
+<h3 id="verify_multijdk_test"><code>verify_multijdk_test</code></h3>
 
 <ul>
 <li>Synopsis</li>
 </ul>
-
-<pre><code>verify_multijdk_test test
+<pre class="highlight plaintext"><code>verify_multijdk_test test
 </code></pre>
 
 <ul>
@@ -259,15 +257,14 @@
 <td style="text-align: left">Yes</td>
 </tr>
 </tbody></table>
-<h2>Public/Stable/Not Replaceable</h2>
+<h2 id="public-stable-not-replaceable">Public/Stable/Not Replaceable</h2>
 
-<h3><code>add_footer_table</code></h3>
+<h3 id="add_footer_table"><code>add_footer_table</code></h3>
 
 <ul>
 <li>Synopsis</li>
 </ul>
-
-<pre><code>add_footer_table subsystem string
+<pre class="highlight plaintext"><code>add_footer_table subsystem string
 </code></pre>
 
 <ul>
@@ -298,13 +295,12 @@
 <td style="text-align: left">No</td>
 </tr>
 </tbody></table>
-<h3><code>add_header_line</code></h3>
+<h3 id="add_header_line"><code>add_header_line</code></h3>
 
 <ul>
 <li>Synopsis</li>
 </ul>
-
-<pre><code>add_header_line string
+<pre class="highlight plaintext"><code>add_header_line string
 </code></pre>
 
 <ul>
@@ -335,13 +331,12 @@
 <td style="text-align: left">No</td>
 </tr>
 </tbody></table>
-<h3><code>add_test_table</code></h3>
+<h3 id="add_test_table"><code>add_test_table</code></h3>
 
 <ul>
 <li>Synopsis</li>
 </ul>
-
-<pre><code>add_test_table failurereason testlist
+<pre class="highlight plaintext"><code>add_test_table failurereason testlist
 </code></pre>
 
 <ul>
@@ -372,13 +367,12 @@
 <td style="text-align: left">No</td>
 </tr>
 </tbody></table>
-<h3><code>add_vote_table</code></h3>
+<h3 id="add_vote_table"><code>add_vote_table</code></h3>
 
 <ul>
 <li>Synopsis</li>
 </ul>
-
-<pre><code>add_vote_table +1/0/-1/null subsystem string
+<pre class="highlight plaintext"><code>add_vote_table +1/0/-1/null subsystem 
string
 </code></pre>
 
 <ul>
@@ -409,13 +403,12 @@
 <td style="text-align: left">No</td>
 </tr>
 </tbody></table>
-<h3><code>big_console_header</code></h3>
+<h3 id="big_console_header"><code>big_console_header</code></h3>
 
 <ul>
 <li>Synopsis</li>
 </ul>
-
-<pre><code>big_console_header string
+<pre class="highlight plaintext"><code>big_console_header string
 </code></pre>
 
 <ul>
@@ -446,13 +439,12 @@
 <td style="text-align: left">No</td>
 </tr>
 </tbody></table>
-<h3><code>clock_display</code></h3>
+<h3 id="clock_display"><code>clock_display</code></h3>
 
 <ul>
 <li>Synopsis</li>
 </ul>
-
-<pre><code>clock_display seconds
+<pre class="highlight plaintext"><code>clock_display seconds
 </code></pre>
 
 <ul>
@@ -483,13 +475,12 @@
 <td style="text-align: left">No</td>
 </tr>
 </tbody></table>
-<h3><code>echo_and_redirect</code></h3>
+<h3 id="echo_and_redirect"><code>echo_and_redirect</code></h3>
 
 <ul>
 <li>Synopsis</li>
 </ul>
-
-<pre><code>echo_and_redirect filename command [..]
+<pre class="highlight plaintext"><code>echo_and_redirect filename command [..]
 </code></pre>
 
 <ul>
@@ -520,13 +511,12 @@
 <td style="text-align: left">No</td>
 </tr>
 </tbody></table>
-<h3><code>generate_stack</code></h3>
+<h3 id="generate_stack"><code>generate_stack</code></h3>
 
 <ul>
 <li>Synopsis</li>
 </ul>
-
-<pre><code>generate_stack
+<pre class="highlight plaintext"><code>generate_stack
 </code></pre>
 
 <ul>
@@ -557,13 +547,12 @@
 <td style="text-align: left">No</td>
 </tr>
 </tbody></table>
-<h3><code>module_file_fragment</code></h3>
+<h3 id="module_file_fragment"><code>module_file_fragment</code></h3>
 
 <ul>
 <li>Synopsis</li>
 </ul>
-
-<pre><code>module_file_fragment module
+<pre class="highlight plaintext"><code>module_file_fragment module
 </code></pre>
 
 <ul>
@@ -594,13 +583,12 @@
 <td style="text-align: left">No</td>
 </tr>
 </tbody></table>
-<h3><code>offset_clock</code></h3>
+<h3 id="offset_clock"><code>offset_clock</code></h3>
 
 <ul>
 <li>Synopsis</li>
 </ul>
-
-<pre><code>offset_clock seconds
+<pre class="highlight plaintext"><code>offset_clock seconds
 </code></pre>
 
 <ul>
@@ -631,13 +619,12 @@
 <td style="text-align: left">No</td>
 </tr>
 </tbody></table>
-<h3><code>setup_defaults</code></h3>
+<h3 id="setup_defaults"><code>setup_defaults</code></h3>
 
 <ul>
 <li>Synopsis</li>
 </ul>
-
-<pre><code>setup_defaults
+<pre class="highlight plaintext"><code>setup_defaults
 </code></pre>
 
 <ul>
@@ -668,13 +655,12 @@
 <td style="text-align: left">No</td>
 </tr>
 </tbody></table>
-<h3><code>start_clock</code></h3>
+<h3 id="start_clock"><code>start_clock</code></h3>
 
 <ul>
 <li>Synopsis</li>
 </ul>
-
-<pre><code>start_clock
+<pre class="highlight plaintext"><code>start_clock
 </code></pre>
 
 <ul>
@@ -705,13 +691,12 @@
 <td style="text-align: left">No</td>
 </tr>
 </tbody></table>
-<h3><code>stop_clock</code></h3>
+<h3 id="stop_clock"><code>stop_clock</code></h3>
 
 <ul>
 <li>Synopsis</li>
 </ul>
-
-<pre><code>stop_clock
+<pre class="highlight plaintext"><code>stop_clock
 </code></pre>
 
 <ul>
@@ -742,13 +727,12 @@
 <td style="text-align: left">No</td>
 </tr>
 </tbody></table>
-<h3><code>write_comment</code></h3>
+<h3 id="write_comment"><code>write_comment</code></h3>
 
 <ul>
 <li>Synopsis</li>
 </ul>
-
-<pre><code>write_comment filename
+<pre class="highlight plaintext"><code>write_comment filename
 </code></pre>
 
 <ul>
@@ -779,13 +763,12 @@
 <td style="text-align: left">No</td>
 </tr>
 </tbody></table>
-<h3><code>yetus_usage</code></h3>
+<h3 id="yetus_usage"><code>yetus_usage</code></h3>
 
 <ul>
 <li>Synopsis</li>
 </ul>
-
-<pre><code>yetus_usage
+<pre class="highlight plaintext"><code>yetus_usage
 </code></pre>
 
 <ul>
@@ -816,15 +799,14 @@
 <td style="text-align: left">No</td>
 </tr>
 </tbody></table>
-<h2>Public/Evolving/Not Replaceable</h2>
+<h2 id="public-evolving-not-replaceable">Public/Evolving/Not Replaceable</h2>
 
-<h3><code>bugsystem_linecomments</code></h3>
+<h3 id="bugsystem_linecomments"><code>bugsystem_linecomments</code></h3>
 
 <ul>
 <li>Synopsis</li>
 </ul>
-
-<pre><code>bugsystem_linecomments filename
+<pre class="highlight plaintext"><code>bugsystem_linecomments filename
 </code></pre>
 
 <ul>
@@ -855,13 +837,12 @@
 <td style="text-align: left">No</td>
 </tr>
 </tbody></table>
-<h3><code>calcdiffs</code></h3>
+<h3 id="calcdiffs"><code>calcdiffs</code></h3>
 
 <ul>
 <li>Synopsis</li>
 </ul>
-
-<pre><code>calcdiffs
+<pre class="highlight plaintext"><code>calcdiffs
 </code></pre>
 
 <ul>
@@ -892,13 +873,12 @@
 <td style="text-align: left">No</td>
 </tr>
 </tbody></table>
-<h3><code>clear_personality_queue</code></h3>
+<h3 id="clear_personality_queue"><code>clear_personality_queue</code></h3>
 
 <ul>
 <li>Synopsis</li>
 </ul>
-
-<pre><code>clear_personality_queue
+<pre class="highlight plaintext"><code>clear_personality_queue
 </code></pre>
 
 <ul>
@@ -929,13 +909,12 @@
 <td style="text-align: left">No</td>
 </tr>
 </tbody></table>
-<h3><code>compile</code></h3>
+<h3 id="compile"><code>compile</code></h3>
 
 <ul>
 <li>Synopsis</li>
 </ul>
-
-<pre><code>compile branch|patch
+<pre class="highlight plaintext"><code>compile branch|patch
 </code></pre>
 
 <ul>
@@ -968,13 +947,12 @@
 <td style="text-align: left">No</td>
 </tr>
 </tbody></table>
-<h3><code>compile_cycle</code></h3>
+<h3 id="compile_cycle"><code>compile_cycle</code></h3>
 
 <ul>
 <li>Synopsis</li>
 </ul>
-
-<pre><code>compile_cycle branch|patch
+<pre class="highlight plaintext"><code>compile_cycle branch|patch
 </code></pre>
 
 <ul>
@@ -1007,13 +985,12 @@
 <td style="text-align: left">No</td>
 </tr>
 </tbody></table>
-<h3><code>distclean</code></h3>
+<h3 id="distclean"><code>distclean</code></h3>
 
 <ul>
 <li>Synopsis</li>
 </ul>
-
-<pre><code>distclean
+<pre class="highlight plaintext"><code>distclean
 </code></pre>
 
 <ul>
@@ -1046,13 +1023,12 @@
 <td style="text-align: left">No</td>
 </tr>
 </tbody></table>
-<h3><code>generic_logfilter</code></h3>
+<h3 id="generic_logfilter"><code>generic_logfilter</code></h3>
 
 <ul>
 <li>Synopsis</li>
 </ul>
-
-<pre><code>generic_logfilter
+<pre class="highlight plaintext"><code>generic_logfilter
 </code></pre>
 
 <ul>
@@ -1083,13 +1059,12 @@
 <td style="text-align: left">No</td>
 </tr>
 </tbody></table>
-<h3><code>generic_post_handler</code></h3>
+<h3 id="generic_post_handler"><code>generic_post_handler</code></h3>
 
 <ul>
 <li>Synopsis</li>
 </ul>
-
-<pre><code>generic_post_handler origlog testtype multijdkmode run commands
+<pre class="highlight plaintext"><code>generic_post_handler origlog testtype 
multijdkmode run commands
 </code></pre>
 
 <ul>
@@ -1122,13 +1097,12 @@
 <td style="text-align: left">No</td>
 </tr>
 </tbody></table>
-<h3><code>generic_postlog_compare</code></h3>
+<h3 id="generic_postlog_compare"><code>generic_postlog_compare</code></h3>
 
 <ul>
 <li>Synopsis</li>
 </ul>
-
-<pre><code>generic_postlog_compare origlog testtype multijdkmode
+<pre class="highlight plaintext"><code>generic_postlog_compare origlog 
testtype multijdkmode
 </code></pre>
 
 <ul>
@@ -1161,13 +1135,12 @@
 <td style="text-align: left">No</td>
 </tr>
 </tbody></table>
-<h3><code>generic_pre_handler</code></h3>
+<h3 id="generic_pre_handler"><code>generic_pre_handler</code></h3>
 
 <ul>
 <li>Synopsis</li>
 </ul>
-
-<pre><code>generic_pre_handler testype multijdk
+<pre class="highlight plaintext"><code>generic_pre_handler testype multijdk
 </code></pre>
 
 <ul>
@@ -1200,13 +1173,12 @@
 <td style="text-align: left">No</td>
 </tr>
 </tbody></table>
-<h3><code>initialize</code></h3>
+<h3 id="initialize"><code>initialize</code></h3>
 
 <ul>
 <li>Synopsis</li>
 </ul>
-
-<pre><code>initialize $@
+<pre class="highlight plaintext"><code>initialize $@
 </code></pre>
 
 <ul>
@@ -1239,13 +1211,12 @@
 <td style="text-align: left">No</td>
 </tr>
 </tbody></table>
-<h3><code>module_status</code></h3>
+<h3 id="module_status"><code>module_status</code></h3>
 
 <ul>
 <li>Synopsis</li>
 </ul>
-
-<pre><code>module_status module runtime
+<pre class="highlight plaintext"><code>module_status module runtime
 </code></pre>
 
 <ul>
@@ -1276,13 +1247,12 @@
 <td style="text-align: left">No</td>
 </tr>
 </tbody></table>
-<h3><code>modules_messages</code></h3>
+<h3 id="modules_messages"><code>modules_messages</code></h3>
 
 <ul>
 <li>Synopsis</li>
 </ul>
-
-<pre><code>modules_messages repostatus testtype mvncmdline
+<pre class="highlight plaintext"><code>modules_messages repostatus testtype 
mvncmdline
 </code></pre>
 
 <ul>
@@ -1313,13 +1283,12 @@
 <td style="text-align: left">No</td>
 </tr>
 </tbody></table>
-<h3><code>modules_reset</code></h3>
+<h3 id="modules_reset"><code>modules_reset</code></h3>
 
 <ul>
 <li>Synopsis</li>
 </ul>
-
-<pre><code>modules_reset
+<pre class="highlight plaintext"><code>modules_reset
 </code></pre>
 
 <ul>
@@ -1350,13 +1319,12 @@
 <td style="text-align: left">No</td>
 </tr>
 </tbody></table>
-<h3><code>modules_workers</code></h3>
+<h3 id="modules_workers"><code>modules_workers</code></h3>
 
 <ul>
 <li>Synopsis</li>
 </ul>
-
-<pre><code>modules_workers repostatus testtype mvncmdline
+<pre class="highlight plaintext"><code>modules_workers repostatus testtype 
mvncmdline
 </code></pre>
 
 <ul>
@@ -1387,13 +1355,12 @@
 <td style="text-align: left">No</td>
 </tr>
 </tbody></table>
-<h3><code>patchfiletests</code></h3>
+<h3 id="patchfiletests"><code>patchfiletests</code></h3>
 
 <ul>
 <li>Synopsis</li>
 </ul>
-
-<pre><code>patchfiletests branch|patch
+<pre class="highlight plaintext"><code>patchfiletests branch|patch
 </code></pre>
 
 <ul>
@@ -1426,13 +1393,12 @@
 <td style="text-align: left">No</td>
 </tr>
 </tbody></table>
-<h3><code>personality_enqueue_module</code></h3>
+<h3 
id="personality_enqueue_module"><code>personality_enqueue_module</code></h3>
 
 <ul>
 <li>Synopsis</li>
 </ul>
-
-<pre><code>personality_enqueue_module module profiles/flags/etc
+<pre class="highlight plaintext"><code>personality_enqueue_module module 
profiles/flags/etc
 </code></pre>
 
 <ul>
@@ -1463,15 +1429,14 @@
 <td style="text-align: left">No</td>
 </tr>
 </tbody></table>
-<h2>Private/Stable/Replaceable</h2>
+<h2 id="private-stable-replaceable">Private/Stable/Replaceable</h2>
 
-<h3><code>prepopulate_footer</code></h3>
+<h3 id="prepopulate_footer"><code>prepopulate_footer</code></h3>
 
 <ul>
 <li>Synopsis</li>
 </ul>
-
-<pre><code>prepopulate_footer
+<pre class="highlight plaintext"><code>prepopulate_footer
 </code></pre>
 
 <ul>
@@ -1502,13 +1467,12 @@
 <td style="text-align: left">Yes</td>
 </tr>
 </tbody></table>
-<h3><code>report_jvm_version</code></h3>
+<h3 id="report_jvm_version"><code>report_jvm_version</code></h3>
 
 <ul>
 <li>Synopsis</li>
 </ul>
-
-<pre><code>report_jvm_version directory
+<pre class="highlight plaintext"><code>report_jvm_version directory
 </code></pre>
 
 <ul>
@@ -1539,15 +1503,14 @@
 <td style="text-align: left">Yes</td>
 </tr>
 </tbody></table>
-<h2>Private/Evolving/Replaceable</h2>
+<h2 id="private-evolving-replaceable">Private/Evolving/Replaceable</h2>
 
-<h3><code>verify_patchdir_still_exists</code></h3>
+<h3 
id="verify_patchdir_still_exists"><code>verify_patchdir_still_exists</code></h3>
 
 <ul>
 <li>Synopsis</li>
 </ul>
-
-<pre><code>verify_patchdir_still_exists
+<pre class="highlight plaintext"><code>verify_patchdir_still_exists
 </code></pre>
 
 <ul>

Reply via email to