Edited wiki page ReleaseProcess through web user interface.
diff --git a/ReleaseProcess.wiki b/ReleaseProcess.wiki
index d432167..5b7dbb2 100644
--- a/ReleaseProcess.wiki
+++ b/ReleaseProcess.wiki
@@ -8,19 +8,19 @@
 
 * Note: Ensure you're using appropriate versions of JDK.
 
-Tag version
+<wiki:toc max_depth="1" />
 
+=== Tag version ===
 {{{
 VERSION=0.90
 
 cd pre-existing-plexi/
-git checkout origin/master # This is the commit we are going to tag
+git checkout origin/master # the commit we are going to tag
 git tag -a v$VERSION -m "Version $VERSION"
 git push --tags
 }}}
 
-Build
-
+=== Build RC of library ===
 {{{
 cd ~
 git clone https://code.google.com/p/plexi/
@@ -29,13 +29,13 @@
 ant -Dadaptorlib.suffix=-$VERSION dist
 }}}
 
-Extract out for publication
+=== Extract documentation zip from full distribution zip ===
 {{{
 cd dist
 unzip adaptor-$VERSION-bin.zip adaptor-$VERSION-docs.zip
 }}}
 
-Update online documentation
+=== Update online documentation ===
 {{{
 cd ~
 git clone https://code.google.com/p/plexi.documentation/
@@ -53,7 +53,7 @@
 }}}
 
 
-Create release branches
+=== Create release branch of library ===
 {{{
 BRANCH=v4.0.x
 
@@ -73,7 +73,7 @@
 git branch $BRANCH origin/$BRANCH
 }}}
 
-Create RC of adaptor
+=== Build RC of adaptor ===
 {{{
 VERSION=0.90
 
@@ -94,6 +94,7 @@
 # Give to QA
 }}}
 
+
 <wiki:comment>
 Scratch pad
 {{{