Repository: pdfbox-docs
Updated Branches:
  refs/heads/asf-site 567bbb74e -> 87bb06398


Site checkin for project Apache PDFBox Website


Project: http://git-wip-us.apache.org/repos/asf/pdfbox-docs/repo
Commit: http://git-wip-us.apache.org/repos/asf/pdfbox-docs/commit/87bb0639
Tree: http://git-wip-us.apache.org/repos/asf/pdfbox-docs/tree/87bb0639
Diff: http://git-wip-us.apache.org/repos/asf/pdfbox-docs/diff/87bb0639

Branch: refs/heads/asf-site
Commit: 87bb063980d836887160d3699af52532f31a2ebb
Parents: 567bbb7
Author: Andreas Lehmkühler <[email protected]>
Authored: Fri Mar 17 19:15:06 2017 +0100
Committer: Andreas Lehmkühler <[email protected]>
Committed: Fri Mar 17 19:15:06 2017 +0100

----------------------------------------------------------------------
 content/1.8/architecture.html                   |  6 ++--
 content/1.8/commandline.html                    | 30 +++++++++--------
 content/1.8/cookbook/documentcreation.html      |  4 +--
 content/1.8/cookbook/encryption.html            |  2 +-
 content/1.8/cookbook/pdfacreation.html          |  6 ++--
 content/1.8/cookbook/pdfavalidation.html        |  2 +-
 content/1.8/cookbook/textextraction.html        |  4 +--
 .../1.8/cookbook/workingwithattachments.html    |  2 +-
 content/1.8/cookbook/workingwithfonts.html      |  6 ++--
 content/1.8/cookbook/workingwithmetadata.html   |  4 +--
 content/1.8/dependencies.html                   |  6 ++--
 content/1.8/faq.html                            | 34 ++++++++++----------
 content/2.0/commandline.html                    | 28 ++++++++--------
 content/2.0/cookbook/encryption.html            |  2 +-
 content/2.0/dependencies.html                   |  4 +--
 content/2.0/faq.html                            |  2 +-
 content/2.0/getting-started.html                |  2 +-
 content/2.0/migration.html                      | 18 +++++------
 content/codingconventions.html                  |  4 +--
 content/doap_PDFBox.rdf                         | 14 ++++++++
 content/errors/403.html                         |  2 +-
 content/errors/404.html                         |  2 +-
 content/ideas.html                              |  8 ++---
 content/index.html                              | 20 ++++++------
 content/mailinglists.html                       | 18 +++++------
 content/siteupdate.html                         |  2 +-
 26 files changed, 125 insertions(+), 107 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/pdfbox-docs/blob/87bb0639/content/1.8/architecture.html
----------------------------------------------------------------------
diff --git a/content/1.8/architecture.html b/content/1.8/architecture.html
index 338d00f..7351199 100644
--- a/content/1.8/architecture.html
+++ b/content/1.8/architecture.html
@@ -247,7 +247,7 @@ doesn’t provide the functionality needed.</p>
 
 <p>A page in a PDF document is represented with a COSDictionary. The entries 
that are available for a page can be seen in the PDF Reference and an example 
of a page looks like this:</p>
 
-<div class="highlighter-rouge"><pre class="highlight"><code>&lt;&lt;
+<div class="language-text highlighter-rouge"><pre 
class="highlight"><code>&lt;&lt;
     /Type /Page
     /MediaBox [0 0 612 915]
     /Contents 56 0 R
@@ -257,7 +257,7 @@ doesn’t provide the functionality needed.</p>
 
 <p>The information within the dictionary can be accessed using the COS 
model</p>
 
-<div class="highlighter-rouge"><pre class="highlight"><code><span 
class="n">COSDictionary</span> <span class="n">page</span> <span 
class="o">=</span> <span class="o">...;</span>
+<div class="language-java highlighter-rouge"><pre 
class="highlight"><code><span class="n">COSDictionary</span> <span 
class="n">page</span> <span class="o">=</span> <span class="o">...;</span>
 <span class="n">COSArray</span> <span class="n">mediaBox</span> <span 
class="o">=</span> <span class="o">(</span><span class="n">COSArray</span><span 
class="o">)</span><span class="n">page</span><span class="o">.</span><span 
class="na">getDictionaryObject</span><span class="o">(</span> <span 
class="s">"MediaBox"</span> <span class="o">);</span>
 <span class="n">System</span><span class="o">.</span><span 
class="na">out</span><span class="o">.</span><span 
class="na">println</span><span class="o">(</span> <span 
class="s">"Width:"</span> <span class="o">+</span> <span 
class="n">mediaBox</span><span class="o">.</span><span 
class="na">get</span><span class="o">(</span> <span class="mi">3</span> <span 
class="o">)</span> <span class="o">);</span>
 </code></pre>
@@ -279,7 +279,7 @@ available to access the attributes.</p>
 
 <p>The same code from above to get the page width can be rewritten to use PD 
Model classes.</p>
 
-<div class="highlighter-rouge"><pre class="highlight"><code><span 
class="n">PDPage</span> <span class="n">page</span> <span class="o">=</span> 
<span class="o">...;</span>
+<div class="language-java highlighter-rouge"><pre 
class="highlight"><code><span class="n">PDPage</span> <span 
class="n">page</span> <span class="o">=</span> <span class="o">...;</span>
 <span class="n">PDRectangle</span> <span class="n">mediaBox</span> <span 
class="o">=</span> <span class="n">page</span><span class="o">.</span><span 
class="na">getMediaBox</span><span class="o">();</span>
 <span class="n">System</span><span class="o">.</span><span 
class="na">out</span><span class="o">.</span><span 
class="na">println</span><span class="o">(</span> <span 
class="s">"Width:"</span> <span class="o">+</span> <span 
class="n">mediaBox</span><span class="o">.</span><span 
class="na">getWidth</span><span class="o">()</span> <span class="o">);</span>
 </code></pre>

http://git-wip-us.apache.org/repos/asf/pdfbox-docs/blob/87bb0639/content/1.8/commandline.html
----------------------------------------------------------------------
diff --git a/content/1.8/commandline.html b/content/1.8/commandline.html
index 1f8b764..9adffe2 100644
--- a/content/1.8/commandline.html
+++ b/content/1.8/commandline.html
@@ -138,20 +138,22 @@
 <p>See the <a href="/1.8/dependencies.html">Dependencies</a> page for 
instructions on how to set your classpath in order to run
 PDFBox tools as Java applications.</p>
 
-<p><strong>Table of Contents</strong>
- - <a href="#decrypt">Decrypt</a>
- - <a href="#encrypt">Encrypt</a>
- - <a href="#extractimages">ExtractImages</a>
- - <a href="#extracttext">ExtractText</a>
- - <a href="#overlaypdf">OverlayPDF</a>
- - <a href="#printpdf">PrintPDF</a>
- - <a href="#pdfdebugger">PDFDebugger</a>
- - <a href="#pdfreader">PDFReader</a>
- - <a href="#pdfmerger">PDFMerger</a>
- - <a href="#pdfsplit">PDFSplit</a>
- - <a href="#pdftoimage">PDFToImage</a>
- - <a href="#texttopdf">TextToPDF</a>
- - <a href="#writedecodeddoc">WriteDecodedDoc</a></p>
+<p><strong>Table of Contents</strong></p>
+<ul>
+  <li><a href="#decrypt">Decrypt</a></li>
+  <li><a href="#encrypt">Encrypt</a></li>
+  <li><a href="#extractimages">ExtractImages</a></li>
+  <li><a href="#extracttext">ExtractText</a></li>
+  <li><a href="#overlaypdf">OverlayPDF</a></li>
+  <li><a href="#printpdf">PrintPDF</a></li>
+  <li><a href="#pdfdebugger">PDFDebugger</a></li>
+  <li><a href="#pdfreader">PDFReader</a></li>
+  <li><a href="#pdfmerger">PDFMerger</a></li>
+  <li><a href="#pdfsplit">PDFSplit</a></li>
+  <li><a href="#pdftoimage">PDFToImage</a></li>
+  <li><a href="#texttopdf">TextToPDF</a></li>
+  <li><a href="#writedecodeddoc">WriteDecodedDoc</a></li>
+</ul>
 
 <h2 id="decrypt">Decrypt</h2>
 

http://git-wip-us.apache.org/repos/asf/pdfbox-docs/blob/87bb0639/content/1.8/cookbook/documentcreation.html
----------------------------------------------------------------------
diff --git a/content/1.8/cookbook/documentcreation.html 
b/content/1.8/cookbook/documentcreation.html
index e9b3a60..13f049a 100644
--- a/content/1.8/cookbook/documentcreation.html
+++ b/content/1.8/cookbook/documentcreation.html
@@ -137,7 +137,7 @@
 
 <p>This small sample shows how to create a new PDF document using PDFBox.</p>
 
-<div class="highlighter-rouge"><pre class="highlight"><code><span 
class="c1">// Create a new empty document</span>
+<div class="language-java highlighter-rouge"><pre 
class="highlight"><code><span class="c1">// Create a new empty document</span>
 <span class="n">PDDocument</span> <span class="n">document</span> <span 
class="o">=</span> <span class="k">new</span> <span 
class="n">PDDocument</span><span class="o">();</span>
 
 <span class="c1">// Create a new blank page and add it to the document</span>
@@ -157,7 +157,7 @@
 
 <p>This small sample shows how to create a new document and print the text 
“Hello World” using one of the PDF base fonts.</p>
 
-<div class="highlighter-rouge"><pre class="highlight"><code><span 
class="c1">// Create a document and add a page to it</span>
+<div class="language-java highlighter-rouge"><pre 
class="highlight"><code><span class="c1">// Create a document and add a page to 
it</span>
 <span class="n">PDDocument</span> <span class="n">document</span> <span 
class="o">=</span> <span class="k">new</span> <span 
class="n">PDDocument</span><span class="o">();</span>
 <span class="n">PDPage</span> <span class="n">page</span> <span 
class="o">=</span> <span class="k">new</span> <span 
class="n">PDPage</span><span class="o">();</span>
 <span class="n">document</span><span class="o">.</span><span 
class="na">addPage</span><span class="o">(</span> <span class="n">page</span> 
<span class="o">);</span>

http://git-wip-us.apache.org/repos/asf/pdfbox-docs/blob/87bb0639/content/1.8/cookbook/encryption.html
----------------------------------------------------------------------
diff --git a/content/1.8/cookbook/encryption.html 
b/content/1.8/cookbook/encryption.html
index da39f03..4f3f670 100644
--- a/content/1.8/cookbook/encryption.html
+++ b/content/1.8/cookbook/encryption.html
@@ -139,7 +139,7 @@
 
 <p>This small sample shows how to encrypt a file so that it can be viewed, but 
not printed.</p>
 
-<div class="highlighter-rouge"><pre class="highlight"><code><span 
class="n">PDDocument</span> <span class="n">doc</span> <span class="o">=</span> 
<span class="n">PDDocument</span><span class="o">.</span><span 
class="na">load</span><span class="o">(</span><span 
class="s">"filename.pdf"</span><span class="o">);</span>
+<div class="language-java highlighter-rouge"><pre 
class="highlight"><code><span class="n">PDDocument</span> <span 
class="n">doc</span> <span class="o">=</span> <span 
class="n">PDDocument</span><span class="o">.</span><span 
class="na">load</span><span class="o">(</span><span 
class="s">"filename.pdf"</span><span class="o">);</span>
 
 <span class="c1">// Define the length of the encryption key.</span>
 <span class="c1">// Possible values are 40 or 128 (256 will be available in 
PDFBox 2.0).</span>

http://git-wip-us.apache.org/repos/asf/pdfbox-docs/blob/87bb0639/content/1.8/cookbook/pdfacreation.html
----------------------------------------------------------------------
diff --git a/content/1.8/cookbook/pdfacreation.html 
b/content/1.8/cookbook/pdfacreation.html
index 68c740c..3acda8f 100644
--- a/content/1.8/cookbook/pdfacreation.html
+++ b/content/1.8/cookbook/pdfacreation.html
@@ -144,7 +144,7 @@ document. The current example creates a valid PDF/A-1b 
document.</p>
 <p>The PDF/A specification enforces that the fonts used in the document are 
present in the PDF File. You
 have to load them. As an example:</p>
 
-<div class="highlighter-rouge"><pre class="highlight"><code><span 
class="n">InputStream</span> <span class="n">fontStream</span> <span 
class="o">=</span> <span class="n">CreatePDFA</span><span 
class="o">.</span><span class="na">class</span><span class="o">.</span><span 
class="na">getResourceAsStream</span><span class="o">(</span><span 
class="s">"/org/apache/pdfbox/resources/ttf/ArialMT.ttf"</span><span 
class="o">);</span>
+<div class="language-java highlighter-rouge"><pre 
class="highlight"><code><span class="n">InputStream</span> <span 
class="n">fontStream</span> <span class="o">=</span> <span 
class="n">CreatePDFA</span><span class="o">.</span><span 
class="na">class</span><span class="o">.</span><span 
class="na">getResourceAsStream</span><span class="o">(</span><span 
class="s">"/org/apache/pdfbox/resources/ttf/ArialMT.ttf"</span><span 
class="o">);</span>
 <span class="n">PDFont</span> <span class="n">font</span> <span 
class="o">=</span> <span class="n">PDTrueTypeFont</span><span 
class="o">.</span><span class="na">loadTTF</span><span class="o">(</span><span 
class="n">doc</span><span class="o">,</span> <span 
class="n">fontStream</span><span class="o">);</span>
 </code></pre>
 </div>
@@ -155,7 +155,7 @@ have to load them. As an example:</p>
 of PDF/A specification reached by the document) must be present. These lines 
create the XMP metadata for a
 PDF/A-1b document:</p>
 
-<div class="highlighter-rouge"><pre class="highlight"><code><span 
class="n">XMPMetadata</span> <span class="n">xmp</span> <span 
class="o">=</span> <span class="k">new</span> <span 
class="n">XMPMetadata</span><span class="o">();</span>
+<div class="language-java highlighter-rouge"><pre 
class="highlight"><code><span class="n">XMPMetadata</span> <span 
class="n">xmp</span> <span class="o">=</span> <span class="k">new</span> <span 
class="n">XMPMetadata</span><span class="o">();</span>
 <span class="n">XMPSchemaPDFAId</span> <span class="n">pdfaid</span> <span 
class="o">=</span> <span class="k">new</span> <span 
class="n">XMPSchemaPDFAId</span><span class="o">(</span><span 
class="n">xmp</span><span class="o">);</span>
 <span class="n">xmp</span><span class="o">.</span><span 
class="na">addSchema</span><span class="o">(</span><span 
class="n">pdfaid</span><span class="o">);</span>
 <span class="n">pdfaid</span><span class="o">.</span><span 
class="na">setConformance</span><span class="o">(</span><span 
class="s">"B"</span><span class="o">);</span>
@@ -170,7 +170,7 @@ PDF/A-1b document:</p>
 <p>It is mandatory to include the color profile used by the document. 
Different profiles can be used. This 
 example takes one present in pdfbox:</p>
 
-<div class="highlighter-rouge"><pre class="highlight"><code><span 
class="c1">// Create output intent</span>
+<div class="language-java highlighter-rouge"><pre 
class="highlight"><code><span class="c1">// Create output intent</span>
 <span class="n">InputStream</span> <span class="n">colorProfile</span> <span 
class="o">=</span> <span class="n">CreatePDFA</span><span 
class="o">.</span><span class="na">class</span><span class="o">.</span><span 
class="na">getResourceAsStream</span><span class="o">(</span><span 
class="s">"/org/apache/pdfbox/resources/pdfa/sRGB Color Space 
Profile.icm"</span><span class="o">);</span>
 <span class="n">PDOutputIntent</span> <span class="n">oi</span> <span 
class="o">=</span> <span class="k">new</span> <span 
class="n">PDOutputIntent</span><span class="o">(</span><span 
class="n">doc</span><span class="o">,</span> <span 
class="n">colorProfile</span><span class="o">);</span> 
 <span class="n">oi</span><span class="o">.</span><span 
class="na">setInfo</span><span class="o">(</span><span class="s">"sRGB 
IEC61966-2.1"</span><span class="o">);</span> 

http://git-wip-us.apache.org/repos/asf/pdfbox-docs/blob/87bb0639/content/1.8/cookbook/pdfavalidation.html
----------------------------------------------------------------------
diff --git a/content/1.8/cookbook/pdfavalidation.html 
b/content/1.8/cookbook/pdfavalidation.html
index 1ab4481..b6522bc 100644
--- a/content/1.8/cookbook/pdfavalidation.html
+++ b/content/1.8/cookbook/pdfavalidation.html
@@ -138,7 +138,7 @@ Check Compliance with PDF/A-1b</p>
 
 <p>This small sample shows how to check the compliance of a file with the 
PDF/A-1b specification.</p>
 
-<div class="highlighter-rouge"><pre class="highlight"><code><span 
class="n">ValidationResult</span> <span class="n">result</span> <span 
class="o">=</span> <span class="kc">null</span><span class="o">;</span>
+<div class="language-java highlighter-rouge"><pre 
class="highlight"><code><span class="n">ValidationResult</span> <span 
class="n">result</span> <span class="o">=</span> <span 
class="kc">null</span><span class="o">;</span>
 
 <span class="n">PreflightParser</span> <span class="n">parser</span> <span 
class="o">=</span> <span class="k">new</span> <span 
class="n">PreflightParser</span><span class="o">(</span><span 
class="n">args</span><span class="o">[</span><span class="mi">0</span><span 
class="o">]);</span>
 <span class="k">try</span>

http://git-wip-us.apache.org/repos/asf/pdfbox-docs/blob/87bb0639/content/1.8/cookbook/textextraction.html
----------------------------------------------------------------------
diff --git a/content/1.8/cookbook/textextraction.html 
b/content/1.8/cookbook/textextraction.html
index 5474cbc..8b4bcf5 100644
--- a/content/1.8/cookbook/textextraction.html
+++ b/content/1.8/cookbook/textextraction.html
@@ -150,7 +150,7 @@ org.apache.pdfbox.ExtractText.</p>
 Lucene to be able to index a PDF document it must first be converted to text. 
PDFBox provides 
 a simple approach for adding PDF documents into a Lucene index.</p>
 
-<div class="highlighter-rouge"><pre class="highlight"><code><span 
class="n">Document</span> <span class="n">luceneDocument</span> <span 
class="o">=</span> <span class="n">LucenePDFDocument</span><span 
class="o">.</span><span class="na">getDocument</span><span class="o">(</span> 
<span class="o">...</span> <span class="o">);</span>
+<div class="language-java highlighter-rouge"><pre 
class="highlight"><code><span class="n">Document</span> <span 
class="n">luceneDocument</span> <span class="o">=</span> <span 
class="n">LucenePDFDocument</span><span class="o">.</span><span 
class="na">getDocument</span><span class="o">(</span> <span 
class="o">...</span> <span class="o">);</span>
 </code></pre>
 </div>
 
@@ -175,7 +175,7 @@ process. The simplest is to specify the range of pages that 
you want to be extra
 For example, to only extract text from the second and third pages of the PDF 
document 
 you could do this:</p>
 
-<div class="highlighter-rouge"><pre class="highlight"><code><span 
class="n">PDFTextStripper</span> <span class="n">stripper</span> <span 
class="o">=</span> <span class="k">new</span> <span 
class="n">PDFTextStripper</span><span class="o">();</span>
+<div class="language-java highlighter-rouge"><pre 
class="highlight"><code><span class="n">PDFTextStripper</span> <span 
class="n">stripper</span> <span class="o">=</span> <span class="k">new</span> 
<span class="n">PDFTextStripper</span><span class="o">();</span>
 <span class="n">stripper</span><span class="o">.</span><span 
class="na">setStartPage</span><span class="o">(</span> <span 
class="mi">2</span> <span class="o">);</span>
 <span class="n">stripper</span><span class="o">.</span><span 
class="na">setEndPage</span><span class="o">(</span> <span class="mi">3</span> 
<span class="o">);</span>
 <span class="n">stripper</span><span class="o">.</span><span 
class="na">writeText</span><span class="o">(</span> <span class="o">...</span> 
<span class="o">);</span>

http://git-wip-us.apache.org/repos/asf/pdfbox-docs/blob/87bb0639/content/1.8/cookbook/workingwithattachments.html
----------------------------------------------------------------------
diff --git a/content/1.8/cookbook/workingwithattachments.html 
b/content/1.8/cookbook/workingwithattachments.html
index 1ad8e23..b5f518d 100644
--- a/content/1.8/cookbook/workingwithattachments.html
+++ b/content/1.8/cookbook/workingwithattachments.html
@@ -157,7 +157,7 @@ attribute of the <code 
class="highlighter-rouge">PDComplexFileSpecification</cod
 menu. PDFBox allows attachments to be added to and extracted from PDF 
documents. 
 Attachments are part of the named tree that is attached to the document 
catalog.</p>
 
-<div class="highlighter-rouge"><pre class="highlight"><code><span 
class="n">PDEmbeddedFilesNameTreeNode</span> <span class="n">efTree</span> 
<span class="o">=</span> <span class="k">new</span> <span 
class="n">PDEmbeddedFilesNameTreeNode</span><span class="o">();</span>
+<div class="language-java highlighter-rouge"><pre 
class="highlight"><code><span class="n">PDEmbeddedFilesNameTreeNode</span> 
<span class="n">efTree</span> <span class="o">=</span> <span 
class="k">new</span> <span class="n">PDEmbeddedFilesNameTreeNode</span><span 
class="o">();</span>
 
 <span class="c1">//first create the file specification, which holds the 
embedded file</span>
 <span class="n">PDComplexFileSpecification</span> <span class="n">fs</span> 
<span class="o">=</span> <span class="k">new</span> <span 
class="n">PDComplexFileSpecification</span><span class="o">();</span>

http://git-wip-us.apache.org/repos/asf/pdfbox-docs/blob/87bb0639/content/1.8/cookbook/workingwithfonts.html
----------------------------------------------------------------------
diff --git a/content/1.8/cookbook/workingwithfonts.html 
b/content/1.8/cookbook/workingwithfonts.html
index e31815c..73a3254 100644
--- a/content/1.8/cookbook/workingwithfonts.html
+++ b/content/1.8/cookbook/workingwithfonts.html
@@ -208,7 +208,7 @@
 
 <p>This small sample shows how to create a new document and print the text 
“Hello World” using one of the PDF base fonts.</p>
 
-<div class="highlighter-rouge"><pre class="highlight"><code><span 
class="c1">// Create a document and add a page to it</span>
+<div class="language-java highlighter-rouge"><pre 
class="highlight"><code><span class="c1">// Create a document and add a page to 
it</span>
 <span class="n">PDDocument</span> <span class="n">document</span> <span 
class="o">=</span> <span class="k">new</span> <span 
class="n">PDDocument</span><span class="o">();</span>
 <span class="n">PDPage</span> <span class="n">page</span> <span 
class="o">=</span> <span class="k">new</span> <span 
class="n">PDPage</span><span class="o">();</span>
 <span class="n">document</span><span class="o">.</span><span 
class="na">addPage</span><span class="o">(</span> <span class="n">page</span> 
<span class="o">);</span>
@@ -239,7 +239,7 @@
 
 <p>This small sample shows how to create a new document and print the text 
“Hello World” using a TrueType font.</p>
 
-<div class="highlighter-rouge"><pre class="highlight"><code><span 
class="c1">// Create a document and add a page to it</span>
+<div class="language-java highlighter-rouge"><pre 
class="highlight"><code><span class="c1">// Create a document and add a page to 
it</span>
 <span class="n">PDDocument</span> <span class="n">document</span> <span 
class="o">=</span> <span class="k">new</span> <span 
class="n">PDDocument</span><span class="o">();</span>
 <span class="n">PDPage</span> <span class="n">page</span> <span 
class="o">=</span> <span class="k">new</span> <span 
class="n">PDPage</span><span class="o">();</span>
 <span class="n">document</span><span class="o">.</span><span 
class="na">addPage</span><span class="o">(</span> <span class="n">page</span> 
<span class="o">);</span>
@@ -278,7 +278,7 @@ use when no mapping exists.</p>
 
 <p>This small sample shows how to create a new document and print the text 
“Hello World” using a PostScript Type1 font.</p>
 
-<div class="highlighter-rouge"><pre class="highlight"><code><span 
class="c1">// Create a document and add a page to it</span>
+<div class="language-java highlighter-rouge"><pre 
class="highlight"><code><span class="c1">// Create a document and add a page to 
it</span>
 <span class="n">PDDocument</span> <span class="n">document</span> <span 
class="o">=</span> <span class="k">new</span> <span 
class="n">PDDocument</span><span class="o">();</span>
 <span class="n">PDPage</span> <span class="n">page</span> <span 
class="o">=</span> <span class="k">new</span> <span 
class="n">PDPage</span><span class="o">();</span>
 <span class="n">document</span><span class="o">.</span><span 
class="na">addPage</span><span class="o">(</span> <span class="n">page</span> 
<span class="o">);</span>

http://git-wip-us.apache.org/repos/asf/pdfbox-docs/blob/87bb0639/content/1.8/cookbook/workingwithmetadata.html
----------------------------------------------------------------------
diff --git a/content/1.8/cookbook/workingwithmetadata.html 
b/content/1.8/cookbook/workingwithmetadata.html
index 8316c72..7290a25 100644
--- a/content/1.8/cookbook/workingwithmetadata.html
+++ b/content/1.8/cookbook/workingwithmetadata.html
@@ -145,7 +145,7 @@ Getting basic Metadata</p>
 <p>To set or retrieve basic information about the document the 
PDDocumentInformation object 
 provides a high level API to that information:</p>
 
-<div class="highlighter-rouge"><pre class="highlight"><code><span 
class="n">PDDocumentInformation</span> <span class="n">info</span> <span 
class="o">=</span> <span class="n">document</span><span class="o">.</span><span 
class="na">getDocumentInformation</span><span class="o">();</span>
+<div class="language-java highlighter-rouge"><pre 
class="highlight"><code><span class="n">PDDocumentInformation</span> <span 
class="n">info</span> <span class="o">=</span> <span 
class="n">document</span><span class="o">.</span><span 
class="na">getDocumentInformation</span><span class="o">();</span>
 <span class="n">System</span><span class="o">.</span><span 
class="na">out</span><span class="o">.</span><span 
class="na">println</span><span class="o">(</span> <span class="s">"Page 
Count="</span> <span class="o">+</span> <span class="n">document</span><span 
class="o">.</span><span class="na">getNumberOfPages</span><span 
class="o">()</span> <span class="o">);</span>
 <span class="n">System</span><span class="o">.</span><span 
class="na">out</span><span class="o">.</span><span 
class="na">println</span><span class="o">(</span> <span 
class="s">"Title="</span> <span class="o">+</span> <span 
class="n">info</span><span class="o">.</span><span 
class="na">getTitle</span><span class="o">()</span> <span class="o">);</span>
 <span class="n">System</span><span class="o">.</span><span 
class="na">out</span><span class="o">.</span><span 
class="na">println</span><span class="o">(</span> <span 
class="s">"Author="</span> <span class="o">+</span> <span 
class="n">info</span><span class="o">.</span><span 
class="na">getAuthor</span><span class="o">()</span> <span class="o">);</span>
@@ -181,7 +181,7 @@ recommended that you review that specification. Currently 
there is no high level
 managing the XML metadata, PDFBox uses standard java InputStream/OutputStream 
to retrieve 
 or set the XML metadata.</p>
 
-<div class="highlighter-rouge"><pre class="highlight"><code><span 
class="n">PDDocument</span> <span class="n">doc</span> <span class="o">=</span> 
<span class="n">PDDocument</span><span class="o">.</span><span 
class="na">load</span><span class="o">(</span> <span class="o">...</span> <span 
class="o">);</span>
+<div class="language-java highlighter-rouge"><pre 
class="highlight"><code><span class="n">PDDocument</span> <span 
class="n">doc</span> <span class="o">=</span> <span 
class="n">PDDocument</span><span class="o">.</span><span 
class="na">load</span><span class="o">(</span> <span class="o">...</span> <span 
class="o">);</span>
 <span class="n">PDDocumentCatalog</span> <span class="n">catalog</span> <span 
class="o">=</span> <span class="n">doc</span><span class="o">.</span><span 
class="na">getDocumentCatalog</span><span class="o">();</span>
 <span class="n">PDMetadata</span> <span class="n">metadata</span> <span 
class="o">=</span> <span class="n">catalog</span><span class="o">.</span><span 
class="na">getMetadata</span><span class="o">();</span>
 

http://git-wip-us.apache.org/repos/asf/pdfbox-docs/blob/87bb0639/content/1.8/dependencies.html
----------------------------------------------------------------------
diff --git a/content/1.8/dependencies.html b/content/1.8/dependencies.html
index a70f72b..c60288e 100644
--- a/content/1.8/dependencies.html
+++ b/content/1.8/dependencies.html
@@ -164,7 +164,7 @@ included in the Java platform.</p>
 <p>To add the pdfbox, fontbox, jempbox and commons-logging jars to your 
application, the easiest thing is to declare the Maven dependency shown below. 
This gives you the main
 pdfbox library directly and the other required jars as transitive 
dependencies.</p>
 
-<div class="highlighter-rouge"><pre class="highlight"><code><span 
class="nt">&lt;dependency&gt;</span>
+<div class="language-xml highlighter-rouge"><pre class="highlight"><code><span 
class="nt">&lt;dependency&gt;</span>
   <span class="nt">&lt;groupId&gt;</span>org.apache.pdfbox<span 
class="nt">&lt;/groupId&gt;</span>
   <span class="nt">&lt;artifactId&gt;</span>pdfbox<span 
class="nt">&lt;/artifactId&gt;</span>
   <span class="nt">&lt;version&gt;</span>...<span 
class="nt">&lt;/version&gt;</span>
@@ -193,7 +193,7 @@ pdfbox library directly and the other required jars as 
transitive dependencies.<
 <p>The most notable such optional feature is support for PDF encryption. 
Instead of implementing its own encryption algorithms, PDFBox uses libraries 
from the 
 <a href="http://www.bouncycastle.org/";>Legion of the Bouncy Castle</a>. Both 
the bcprov and bcmail libraries are needed and can be included using the Maven 
dependencies shown below.</p>
 
-<div class="highlighter-rouge"><pre class="highlight"><code><span 
class="nt">&lt;dependency&gt;</span>
+<div class="language-xml highlighter-rouge"><pre class="highlight"><code><span 
class="nt">&lt;dependency&gt;</span>
   <span class="nt">&lt;groupId&gt;</span>org.bouncycastle<span 
class="nt">&lt;/groupId&gt;</span>
   <span class="nt">&lt;artifactId&gt;</span>bcprov-jdk15<span 
class="nt">&lt;/artifactId&gt;</span>
   <span class="nt">&lt;version&gt;</span>1.44<span 
class="nt">&lt;/version&gt;</span>
@@ -211,7 +211,7 @@ pdfbox library directly and the other required jars as 
transitive dependencies.<
 <a href="http://site.icu-project.org/";>International Components for 
Unicode</a> (ICU) project to support such languages in PDF documents. To add 
the ICU4J jar to your project, 
 use the following Maven dependency.</p>
 
-<div class="highlighter-rouge"><pre class="highlight"><code><span 
class="nt">&lt;dependency&gt;</span>
+<div class="language-xml highlighter-rouge"><pre class="highlight"><code><span 
class="nt">&lt;dependency&gt;</span>
   <span class="nt">&lt;groupId&gt;</span>com.ibm.icu<span 
class="nt">&lt;/groupId&gt;</span>
   <span class="nt">&lt;artifactId&gt;</span>icu4j<span 
class="nt">&lt;/artifactId&gt;</span>
   <span class="nt">&lt;version&gt;</span>3.8<span 
class="nt">&lt;/version&gt;</span>

http://git-wip-us.apache.org/repos/asf/pdfbox-docs/blob/87bb0639/content/1.8/faq.html
----------------------------------------------------------------------
diff --git a/content/1.8/faq.html b/content/1.8/faq.html
index 36e8cb2..64da836 100644
--- a/content/1.8/faq.html
+++ b/content/1.8/faq.html
@@ -153,8 +153,8 @@
 
 <h2 id="general-questions-1">General Questions</h2>
 
-<p><a name="log4j"></a>
-### I am getting the below Log4J warning message, how do I remove it? ###</p>
+<p><a name="log4j"></a></p>
+<h3 id="i-am-getting-the-below-log4j-warning-message-how-do-i-remove-it">I am 
getting the below Log4J warning message, how do I remove it?</h3>
 
 <div class="highlighter-rouge"><pre class="highlight"><code>log4j:WARN No 
appenders could be found for logger (org.apache.pdfbox.util.ResourceLoader).
 log4j:WARN Please initialize the log4j system properly.
@@ -176,21 +176,21 @@ See the <a 
href="http://logging.apache.org/log4j/1.2/manual.html";>log4j document
 </code></pre>
 </div>
 
-<p><a name="threadsafe"></a>
-### Is PDFBox thread safe? ###</p>
+<p><a name="threadsafe"></a></p>
+<h3 id="is-pdfbox-thread-safe">Is PDFBox thread safe?</h3>
 
 <p>No! Only one thread may access a single document at a time. You can have 
multiple threads
 each accessing their own PDDocument object.</p>
 
-<p><a name="notclosed"></a>
-### Why do I get a “Warning: You did not close the PDF Document”? ###</p>
+<p><a name="notclosed"></a></p>
+<h3 id="why-do-i-get-a-warning-you-did-not-close-the-pdf-document">Why do I 
get a “Warning: You did not close the PDF Document”?</h3>
 
 <p>You need to call close() on the PDDocument inside the finally block, if you
 don’t then the document will not be closed properly.  Also, you must close 
all
 PDDocument objects that get created.  The following code creates 
<strong>two</strong>
 PDDocument objects; one from the “new PDDocument()” and the second by the 
load method.</p>
 
-<div class="highlighter-rouge"><pre class="highlight"><code><span 
class="n">PDDocument</span> <span class="n">doc</span> <span class="o">=</span> 
<span class="k">new</span> <span class="n">PDDocument</span><span 
class="o">();</span>
+<div class="language-java highlighter-rouge"><pre 
class="highlight"><code><span class="n">PDDocument</span> <span 
class="n">doc</span> <span class="o">=</span> <span class="k">new</span> <span 
class="n">PDDocument</span><span class="o">();</span>
 <span class="k">try</span>
 <span class="o">{</span>
    <span class="n">doc</span> <span class="o">=</span> <span 
class="n">PDDocument</span><span class="o">.</span><span 
class="na">load</span><span class="o">(</span> <span class="s">"my.pdf"</span> 
<span class="o">);</span>
@@ -207,8 +207,8 @@ PDDocument objects; one from the “new PDDocument()” and 
the second by the lo
 
 <h2 id="text-extraction-1">Text Extraction</h2>
 
-<p><a name="notext"></a>
-### How come I am not getting any text from the PDF document? ###</p>
+<p><a name="notext"></a></p>
+<h3 id="how-come-i-am-not-getting-any-text-from-the-pdf-document">How come I 
am not getting any text from the PDF document?</h3>
 
 <p>Text extraction from a pdf document is a complicated task and there are 
many factors
 involved that effect the possibility and accuracy of text extraction.  It 
would be helpful
@@ -221,8 +221,8 @@ should be able to as well and it is a bug if it cannot.  If 
Acrobat cannot extra
 You can tell by using the selection tool in Acrobat, if you can’t select any 
text then it is probably an image.</li>
 </ul>
 
-<p><a name="gibberish"></a>
-### How come I am getting gibberish(G38G43G36G51G5) when extracting text? 
###</p>
+<p><a name="gibberish"></a></p>
+<h3 
id="how-come-i-am-getting-gibberishg38g43g36g51g5-when-extracting-text">How 
come I am getting gibberish(G38G43G36G51G5) when extracting text?</h3>
 
 <p>This is because the characters in a PDF document can use a custom encoding
 instead of unicode or ASCII.  When you see gibberish text then it
@@ -230,23 +230,23 @@ probably means that a meaningless internal encoding is 
being used.  The
 only way to access the text is to use OCR.  This may be a future
 enhancement.</p>
 
-<p><a name="fontwidth"></a>
-### What does “java.io.IOException: Can’t handle font width” mean? 
###</p>
+<p><a name="fontwidth"></a></p>
+<h3 id="what-does-javaioioexception-cant-handle-font-width-mean">What does 
“java.io.IOException: Can’t handle font width” mean?</h3>
 
 <p>This probably means that the “Resources” directory is not in your 
classpath. The
 Resources directory is included in the PDFBox jar so this is only a problem if 
you
 are building PDFBox yourself and not using the binary.</p>
 
-<p><a name="permission"></a>
-### Why do I get “You do not have permission to extract text” on some 
documents? ###</p>
+<p><a name="permission"></a></p>
+<h3 
id="why-do-i-get-you-do-not-have-permission-to-extract-text-on-some-documents">Why
 do I get “You do not have permission to extract text” on some 
documents?</h3>
 
 <p>PDF documents have certain security permissions that can be applied to them 
and two 
 passwords associated with them, a user password and a master password. If the 
“cannot extract text”
 permission bit is set then you need to decrypt the document with the master 
password in order
 to extract the text.</p>
 
-<p><a name="partially"></a>
-### Can’t we just extract the text without parsing the whole document or 
extract text as it is parsed? ###</p>
+<p><a name="partially"></a></p>
+<h3 
id="cant-we-just-extract-the-text-without-parsing-the-whole-document-or-extract-text-as-it-is-parsed">Can’t
 we just extract the text without parsing the whole document or extract text as 
it is parsed?</h3>
 
 <p>Not really, for a couple reasons.</p>
 

http://git-wip-us.apache.org/repos/asf/pdfbox-docs/blob/87bb0639/content/2.0/commandline.html
----------------------------------------------------------------------
diff --git a/content/2.0/commandline.html b/content/2.0/commandline.html
index 7caca3a..37f6331 100644
--- a/content/2.0/commandline.html
+++ b/content/2.0/commandline.html
@@ -138,19 +138,21 @@
 <p>See the <a href="/2.0/dependencies.html">Dependencies</a> page for 
instructions on how to set your classpath in order to run
 PDFBox tools as Java applications.</p>
 
-<p><strong>Table of Contents</strong>
- - <a href="#decrypt">Decrypt</a>
- - <a href="#encrypt">Encrypt</a>
- - <a href="#extractimages">ExtractImages</a>
- - <a href="#extracttext">ExtractText</a>
- - <a href="#overlaypdf">OverlayPDF</a>
- - <a href="#pdfdebugger">PDFDebugger</a>
- - <a href="#pdfmerger">PDFMerger</a>
- - <a href="#pdfsplit">PDFSplit</a>
- - <a href="#pdftoimage">PDFToImage</a>
- - <a href="#printpdf">PrintPDF</a>
- - <a href="#texttopdf">TextToPDF</a>
- - <a href="#writedecodeddoc">WriteDecodedDoc</a></p>
+<p><strong>Table of Contents</strong></p>
+<ul>
+  <li><a href="#decrypt">Decrypt</a></li>
+  <li><a href="#encrypt">Encrypt</a></li>
+  <li><a href="#extractimages">ExtractImages</a></li>
+  <li><a href="#extracttext">ExtractText</a></li>
+  <li><a href="#overlaypdf">OverlayPDF</a></li>
+  <li><a href="#pdfdebugger">PDFDebugger</a></li>
+  <li><a href="#pdfmerger">PDFMerger</a></li>
+  <li><a href="#pdfsplit">PDFSplit</a></li>
+  <li><a href="#pdftoimage">PDFToImage</a></li>
+  <li><a href="#printpdf">PrintPDF</a></li>
+  <li><a href="#texttopdf">TextToPDF</a></li>
+  <li><a href="#writedecodeddoc">WriteDecodedDoc</a></li>
+</ul>
 
 <h2 id="decrypt">Decrypt</h2>
 

http://git-wip-us.apache.org/repos/asf/pdfbox-docs/blob/87bb0639/content/2.0/cookbook/encryption.html
----------------------------------------------------------------------
diff --git a/content/2.0/cookbook/encryption.html 
b/content/2.0/cookbook/encryption.html
index 818b817..fcf37bc 100644
--- a/content/2.0/cookbook/encryption.html
+++ b/content/2.0/cookbook/encryption.html
@@ -139,7 +139,7 @@
 
 <p>This small sample shows how to encrypt a file so that it can be viewed, but 
not printed.</p>
 
-<div class="highlighter-rouge"><pre class="highlight"><code><span 
class="n">PDDocument</span> <span class="n">doc</span> <span class="o">=</span> 
<span class="n">PDDocument</span><span class="o">.</span><span 
class="na">load</span><span class="o">(</span><span 
class="s">"filename.pdf"</span><span class="o">);</span>
+<div class="language-java highlighter-rouge"><pre 
class="highlight"><code><span class="n">PDDocument</span> <span 
class="n">doc</span> <span class="o">=</span> <span 
class="n">PDDocument</span><span class="o">.</span><span 
class="na">load</span><span class="o">(</span><span 
class="s">"filename.pdf"</span><span class="o">);</span>
 
 <span class="c1">// Define the length of the encryption key.</span>
 <span class="c1">// Possible values are 40, 128 or 256.</span>

http://git-wip-us.apache.org/repos/asf/pdfbox-docs/blob/87bb0639/content/2.0/dependencies.html
----------------------------------------------------------------------
diff --git a/content/2.0/dependencies.html b/content/2.0/dependencies.html
index d2da640..6f2a6df 100644
--- a/content/2.0/dependencies.html
+++ b/content/2.0/dependencies.html
@@ -163,7 +163,7 @@ included in the Java platform.</p>
 <h3 id="include-dependencies-using-maven">Include Dependencies Using Maven</h3>
 <p>To add the pdfbox, fontbox, xmpbox and commons-logging jars to your 
application, the easiest thing is to declare the Maven dependency shown below. 
This gives you the main pdfbox library directly and the other required jars as 
transitive dependencies.</p>
 
-<div class="highlighter-rouge"><pre class="highlight"><code><span 
class="nt">&lt;dependency&gt;</span>
+<div class="language-xml highlighter-rouge"><pre class="highlight"><code><span 
class="nt">&lt;dependency&gt;</span>
     <span class="nt">&lt;groupId&gt;</span>org.apache.pdfbox<span 
class="nt">&lt;/groupId&gt;</span>
     <span class="nt">&lt;artifactId&gt;</span>pdfbox<span 
class="nt">&lt;/artifactId&gt;</span>
     <span class="nt">&lt;version&gt;</span>...<span 
class="nt">&lt;/version&gt;</span>
@@ -196,7 +196,7 @@ included in the Java platform.</p>
 
 <p>Encrypting and sigining PDFs requires the <em>bcprov</em>, <em>bcmail</em> 
and <em>bcpkix</em> libraries from the <a 
href="http://www.bouncycastle.org/";>Legion of the Bouncy Castle</a>. These can 
be included in your Maven project using the following dependencies:</p>
 
-<div class="highlighter-rouge"><pre class="highlight"><code><span 
class="nt">&lt;dependency&gt;</span>
+<div class="language-xml highlighter-rouge"><pre class="highlight"><code><span 
class="nt">&lt;dependency&gt;</span>
     <span class="nt">&lt;groupId&gt;</span>org.bouncycastle<span 
class="nt">&lt;/groupId&gt;</span>
     <span class="nt">&lt;artifactId&gt;</span>bcprov-jdk15on<span 
class="nt">&lt;/artifactId&gt;</span>
     <span class="nt">&lt;version&gt;</span>1.54<span 
class="nt">&lt;/version&gt;</span>

http://git-wip-us.apache.org/repos/asf/pdfbox-docs/blob/87bb0639/content/2.0/faq.html
----------------------------------------------------------------------
diff --git a/content/2.0/faq.html b/content/2.0/faq.html
index 3921c46..21779bf 100644
--- a/content/2.0/faq.html
+++ b/content/2.0/faq.html
@@ -216,7 +216,7 @@ don’t then the document will not be closed properly.  
Also, you must close all
 PDDocument objects that get created.  The following code creates 
<strong>two</strong>
 PDDocument objects; one from the “new PDDocument()” and the second by the 
load method.</p>
 
-<div class="highlighter-rouge"><pre class="highlight"><code><span 
class="n">PDDocument</span> <span class="n">doc</span> <span class="o">=</span> 
<span class="k">new</span> <span class="n">PDDocument</span><span 
class="o">();</span>
+<div class="language-java highlighter-rouge"><pre 
class="highlight"><code><span class="n">PDDocument</span> <span 
class="n">doc</span> <span class="o">=</span> <span class="k">new</span> <span 
class="n">PDDocument</span><span class="o">();</span>
 <span class="k">try</span>
 <span class="o">{</span>
    <span class="n">doc</span> <span class="o">=</span> <span 
class="n">PDDocument</span><span class="o">.</span><span 
class="na">load</span><span class="o">(</span> <span class="s">"my.pdf"</span> 
<span class="o">);</span>

http://git-wip-us.apache.org/repos/asf/pdfbox-docs/blob/87bb0639/content/2.0/getting-started.html
----------------------------------------------------------------------
diff --git a/content/2.0/getting-started.html b/content/2.0/getting-started.html
index e0225af..ea4f70a 100644
--- a/content/2.0/getting-started.html
+++ b/content/2.0/getting-started.html
@@ -137,7 +137,7 @@
 
 <p>To use the latest release you’ll need to add the following dependency:</p>
 
-<div class="highlighter-rouge"><pre class="highlight"><code><span 
class="nt">&lt;dependency&gt;</span>
+<div class="language-xml highlighter-rouge"><pre class="highlight"><code><span 
class="nt">&lt;dependency&gt;</span>
   <span class="nt">&lt;groupId&gt;</span>org.apache.pdfbox<span 
class="nt">&lt;/groupId&gt;</span>
   <span class="nt">&lt;artifactId&gt;</span>pdfbox<span 
class="nt">&lt;/artifactId&gt;</span>
   <span class="nt">&lt;version&gt;</span>2.0.4<span 
class="nt">&lt;/version&gt;</span>

http://git-wip-us.apache.org/repos/asf/pdfbox-docs/blob/87bb0639/content/2.0/migration.html
----------------------------------------------------------------------
diff --git a/content/2.0/migration.html b/content/2.0/migration.html
index a74381e..b7b2f00 100644
--- a/content/2.0/migration.html
+++ b/content/2.0/migration.html
@@ -195,7 +195,7 @@ results when switching to PDFBox 2.0.0.</p>
 
 <p>TrueType fonts shall now be loaded using</p>
 
-<div class="highlighter-rouge"><pre class="highlight"><code><span 
class="n">PDType0Font</span><span class="o">.</span><span class="na">load</span>
+<div class="language-java highlighter-rouge"><pre 
class="highlight"><code><span class="n">PDType0Font</span><span 
class="o">.</span><span class="na">load</span>
 </code></pre>
 </div>
 
@@ -227,7 +227,7 @@ and so on. The <code class="highlighter-rouge">add</code> 
method now supports al
 
 <p>Prior to PDFBox 2.0 parsing the page content was done using</p>
 
-<div class="highlighter-rouge"><pre class="highlight"><code><span 
class="n">PDStream</span> <span class="n">contents</span> <span 
class="o">=</span> <span class="n">page</span><span class="o">.</span><span 
class="na">getContents</span><span class="o">();</span>
+<div class="language-java highlighter-rouge"><pre 
class="highlight"><code><span class="n">PDStream</span> <span 
class="n">contents</span> <span class="o">=</span> <span 
class="n">page</span><span class="o">.</span><span 
class="na">getContents</span><span class="o">();</span>
 <span class="n">PDFStreamParser</span> <span class="n">parser</span> <span 
class="o">=</span> <span class="k">new</span> <span 
class="n">PDFStreamParser</span><span class="o">(</span><span 
class="n">contents</span><span class="o">.</span><span 
class="na">getStream</span><span class="o">());</span>
 <span class="n">parser</span><span class="o">.</span><span 
class="na">parse</span><span class="o">();</span>
 <span class="n">List</span><span class="o">&lt;</span><span 
class="n">Object</span><span class="o">&gt;</span> <span 
class="n">tokens</span> <span class="o">=</span> <span 
class="n">parser</span><span class="o">.</span><span 
class="na">getTokens</span><span class="o">();</span>
@@ -236,7 +236,7 @@ and so on. The <code class="highlighter-rouge">add</code> 
method now supports al
 
 <p>With PDFBox 2.0 the code is reduced to</p>
 
-<div class="highlighter-rouge"><pre class="highlight"><code><span 
class="n">PDFStreamParser</span> <span class="n">parser</span> <span 
class="o">=</span> <span class="k">new</span> <span 
class="n">PDFStreamParser</span><span class="o">(</span><span 
class="n">page</span><span class="o">);</span>
+<div class="language-java highlighter-rouge"><pre 
class="highlight"><code><span class="n">PDFStreamParser</span> <span 
class="n">parser</span> <span class="o">=</span> <span class="k">new</span> 
<span class="n">PDFStreamParser</span><span class="o">(</span><span 
class="n">page</span><span class="o">);</span>
 <span class="n">parser</span><span class="o">.</span><span 
class="na">parse</span><span class="o">();</span>
 <span class="n">List</span><span class="o">&lt;</span><span 
class="n">Object</span><span class="o">&gt;</span> <span 
class="n">tokens</span> <span class="o">=</span> <span 
class="n">parser</span><span class="o">.</span><span 
class="na">getTokens</span><span class="o">();</span>
 </code></pre>
@@ -247,7 +247,7 @@ and so on. The <code class="highlighter-rouge">add</code> 
method now supports al
 <h3 id="iterating-pages">Iterating Pages</h3>
 <p>With PDFBox 2.0.0 the prefered way to iterate through the pages of a 
document is</p>
 
-<div class="highlighter-rouge"><pre class="highlight"><code><span 
class="k">for</span><span class="o">(</span><span class="n">PDPage</span> <span 
class="n">page</span> <span class="o">:</span> <span 
class="n">document</span><span class="o">.</span><span 
class="na">getPages</span><span class="o">())</span>
+<div class="language-java highlighter-rouge"><pre 
class="highlight"><code><span class="k">for</span><span class="o">(</span><span 
class="n">PDPage</span> <span class="n">page</span> <span class="o">:</span> 
<span class="n">document</span><span class="o">.</span><span 
class="na">getPages</span><span class="o">())</span>
 <span class="o">{</span>
     <span class="o">...</span> <span class="o">(</span><span 
class="k">do</span> <span class="n">something</span><span class="o">)</span>
 <span class="o">}</span>
@@ -257,7 +257,7 @@ and so on. The <code class="highlighter-rouge">add</code> 
method now supports al
 <h3 id="pdf-rendering">PDF Rendering</h3>
 <p>With PDFBox 2.0.0 <code 
class="highlighter-rouge">PDPage.convertToImage</code> and <code 
class="highlighter-rouge">PDFImageWriter</code> have been removed. Instead the 
new <code class="highlighter-rouge">PDFRenderer</code> class shall be used.</p>
 
-<div class="highlighter-rouge"><pre class="highlight"><code><span 
class="n">PDDocument</span> <span class="n">document</span> <span 
class="o">=</span> <span class="n">PDDocument</span><span 
class="o">.</span><span class="na">load</span><span class="o">(</span><span 
class="k">new</span> <span class="n">File</span><span class="o">(</span><span 
class="n">pdfFilename</span><span class="o">));</span>
+<div class="language-java highlighter-rouge"><pre 
class="highlight"><code><span class="n">PDDocument</span> <span 
class="n">document</span> <span class="o">=</span> <span 
class="n">PDDocument</span><span class="o">.</span><span 
class="na">load</span><span class="o">(</span><span class="k">new</span> <span 
class="n">File</span><span class="o">(</span><span 
class="n">pdfFilename</span><span class="o">));</span>
 <span class="n">PDFRenderer</span> <span class="n">pdfRenderer</span> <span 
class="o">=</span> <span class="k">new</span> <span 
class="n">PDFRenderer</span><span class="o">(</span><span 
class="n">document</span><span class="o">);</span>
 <span class="kt">int</span> <span class="n">pageCounter</span> <span 
class="o">=</span> <span class="mi">0</span><span class="o">;</span>
 <span class="k">for</span> <span class="o">(</span><span 
class="n">PDPage</span> <span class="n">page</span> <span class="o">:</span> 
<span class="n">document</span><span class="o">.</span><span 
class="na">getPages</span><span class="o">())</span>
@@ -301,7 +301,7 @@ https://bugs.openjdk.java.net/browse/JDK-8041125</p>
 
 <p>Users of <code class="highlighter-rouge">PDFPrinter.silentPrint()</code> 
should now use this code:</p>
 
-<div class="highlighter-rouge"><pre class="highlight"><code><span 
class="n">PrinterJob</span> <span class="n">job</span> <span class="o">=</span> 
<span class="n">PrinterJob</span><span class="o">.</span><span 
class="na">getPrinterJob</span><span class="o">();</span>
+<div class="language-java highlighter-rouge"><pre 
class="highlight"><code><span class="n">PrinterJob</span> <span 
class="n">job</span> <span class="o">=</span> <span 
class="n">PrinterJob</span><span class="o">.</span><span 
class="na">getPrinterJob</span><span class="o">();</span>
 <span class="n">job</span><span class="o">.</span><span 
class="na">setPageable</span><span class="o">(</span><span class="k">new</span> 
<span class="n">PDFPageable</span><span class="o">(</span><span 
class="n">document</span><span class="o">));</span>
 <span class="n">job</span><span class="o">.</span><span 
class="na">print</span><span class="o">();</span>
 </code></pre>
@@ -309,7 +309,7 @@ https://bugs.openjdk.java.net/browse/JDK-8041125</p>
 
 <p>While users of <code class="highlighter-rouge">PDFPrinter.print()</code> 
should now use this code:</p>
 
-<div class="highlighter-rouge"><pre class="highlight"><code><span 
class="n">PrinterJob</span> <span class="n">job</span> <span class="o">=</span> 
<span class="n">PrinterJob</span><span class="o">.</span><span 
class="na">getPrinterJob</span><span class="o">();</span>
+<div class="language-java highlighter-rouge"><pre 
class="highlight"><code><span class="n">PrinterJob</span> <span 
class="n">job</span> <span class="o">=</span> <span 
class="n">PrinterJob</span><span class="o">.</span><span 
class="na">getPrinterJob</span><span class="o">();</span>
 <span class="n">job</span><span class="o">.</span><span 
class="na">setPageable</span><span class="o">(</span><span class="k">new</span> 
<span class="n">PDFPageable</span><span class="o">(</span><span 
class="n">document</span><span class="o">));</span>
 <span class="k">if</span> <span class="o">(</span><span 
class="n">job</span><span class="o">.</span><span 
class="na">printDialog</span><span class="o">())</span> <span class="o">{</span>
     <span class="n">job</span><span class="o">.</span><span 
class="na">print</span><span class="o">();</span>
@@ -323,7 +323,7 @@ https://bugs.openjdk.java.net/browse/JDK-8041125</p>
 <p>In 1.8, to get the text colors, one method was to pass an expanded 
.properties file to the PDFStripper constructor. To achieve the same
 in PDFBox 2.0 you can extend <code 
class="highlighter-rouge">PDFTextStripper</code>and add the following <code 
class="highlighter-rouge">Operators</code> to the constructor:</p>
 
-<div class="highlighter-rouge"><pre class="highlight"><code><span 
class="n">addOperator</span><span class="o">(</span><span class="k">new</span> 
<span class="n">SetStrokingColorSpace</span><span class="o">());</span>
+<div class="language-java highlighter-rouge"><pre 
class="highlight"><code><span class="n">addOperator</span><span 
class="o">(</span><span class="k">new</span> <span 
class="n">SetStrokingColorSpace</span><span class="o">());</span>
 <span class="n">addOperator</span><span class="o">(</span><span 
class="k">new</span> <span class="n">SetNonStrokingColorSpace</span><span 
class="o">());</span>
 <span class="n">addOperator</span><span class="o">(</span><span 
class="k">new</span> <span class="n">SetStrokingDeviceCMYKColor</span><span 
class="o">());</span>
 <span class="n">addOperator</span><span class="o">(</span><span 
class="k">new</span> <span class="n">SetNonStrokingDeviceCMYKColor</span><span 
class="o">());</span>
@@ -345,7 +345,7 @@ tree are now represented by the <code 
class="highlighter-rouge">PDNonTerminalFie
 
 <p>With PDFBox 2.0.0 the prefered way to iterate through the fields is now</p>
 
-<div class="highlighter-rouge"><pre class="highlight"><code><span 
class="n">PDAcroForm</span> <span class="n">form</span><span class="o">;</span>
+<div class="language-java highlighter-rouge"><pre 
class="highlight"><code><span class="n">PDAcroForm</span> <span 
class="n">form</span><span class="o">;</span>
 <span class="o">...</span>
 <span class="k">for</span> <span class="o">(</span><span 
class="n">PDField</span> <span class="n">field</span> <span class="o">:</span> 
<span class="n">form</span><span class="o">.</span><span 
class="na">getFieldTree</span><span class="o">())</span>
 <span class="o">{</span>

http://git-wip-us.apache.org/repos/asf/pdfbox-docs/blob/87bb0639/content/codingconventions.html
----------------------------------------------------------------------
diff --git a/content/codingconventions.html b/content/codingconventions.html
index 1ab3655..3c1ef92 100644
--- a/content/codingconventions.html
+++ b/content/codingconventions.html
@@ -286,9 +286,9 @@
 
 <p>Here’s an example of PDFBox’s formatting style:</p>
 
-<div class="highlighter-rouge"><pre class="highlight"><code><span 
class="kd">public</span> <span class="kd">class</span> <span 
class="nc">Foo</span> <span class="kd">extends</span> <span class="n">Bar</span>
+<div class="language-java highlighter-rouge"><pre 
class="highlight"><code><span class="kd">public</span> <span 
class="kd">class</span> <span class="nc">Foo</span> <span 
class="kd">extends</span> <span class="n">Bar</span>
 <span class="o">{</span>
-    <span class="kd">public</span> <span class="kd">static</span> <span 
class="kt">void</span> <span class="n">main</span><span class="o">(</span><span 
class="n">String</span> <span class="n">args</span><span class="o">[])</span>
+    <span class="kd">public</span> <span class="kd">static</span> <span 
class="kt">void</span> <span class="nf">main</span><span 
class="o">(</span><span class="n">String</span> <span 
class="n">args</span><span class="o">[])</span>
     <span class="o">{</span>
         <span class="k">try</span>
         <span class="o">{</span>

http://git-wip-us.apache.org/repos/asf/pdfbox-docs/blob/87bb0639/content/doap_PDFBox.rdf
----------------------------------------------------------------------
diff --git a/content/doap_PDFBox.rdf b/content/doap_PDFBox.rdf
index 3503b76..019fef0 100644
--- a/content/doap_PDFBox.rdf
+++ b/content/doap_PDFBox.rdf
@@ -37,6 +37,20 @@
     <release>
       <Version>
         <name>Apache PDFBox</name>
+        <created>2017-03-17</created>
+        <revision>2.0.5</revision>
+      </Version>
+    </release>
+    <release>
+      <Version>
+        <name>Apache PDFBox</name>
+        <created>2016-12-16</created>
+        <revision>2.0.4</revision>
+      </Version>
+    </release>
+    <release>
+      <Version>
+        <name>Apache PDFBox</name>
         <created>2016-09-17</created>
         <revision>2.0.3</revision>
       </Version>

http://git-wip-us.apache.org/repos/asf/pdfbox-docs/blob/87bb0639/content/errors/403.html
----------------------------------------------------------------------
diff --git a/content/errors/403.html b/content/errors/403.html
index 9d13b7e..4df1606 100644
--- a/content/errors/403.html
+++ b/content/errors/403.html
@@ -131,7 +131,7 @@
                 </ul>
             </div>
             <div class="col-xs-12 col-sm-9">
-                <h1 id="section">403</h1>
+                <h1 id="403">403</h1>
 
 <p>We’re sorry, but the page you requested cannot be accessed.</p>
 

http://git-wip-us.apache.org/repos/asf/pdfbox-docs/blob/87bb0639/content/errors/404.html
----------------------------------------------------------------------
diff --git a/content/errors/404.html b/content/errors/404.html
index c5371b6..3f51a13 100644
--- a/content/errors/404.html
+++ b/content/errors/404.html
@@ -131,7 +131,7 @@
                 </ul>
             </div>
             <div class="col-xs-12 col-sm-9">
-                <h1 id="section">404</h1>
+                <h1 id="404">404</h1>
 
 <p>We’re sorry, but the page you requested cannot be found.</p>
 

http://git-wip-us.apache.org/repos/asf/pdfbox-docs/blob/87bb0639/content/ideas.html
----------------------------------------------------------------------
diff --git a/content/ideas.html b/content/ideas.html
index 30f3b97..e6f8379 100644
--- a/content/ideas.html
+++ b/content/ideas.html
@@ -150,18 +150,18 @@ implementation.</p>
 <p>In addition to the PDF parsing pdfbox does not always handle large PDF 
files well as some 
 of the references are implemented as int instead of long</p>
 
-<h2 id="span-classcompleteswitch-to-java-16span"><span class="complete">Switch 
to Java 1.6</span></h2>
+<h2 id="switch-to-java-16"><span class="complete">Switch to Java 
1.6</span></h2>
 
 <p><span class="complete">PDFBox 2.0.0 has Java 6 as a minimum 
requirement.</span></p>
 
-<h2 id="span-classcompletebreak-pdfbox-into-modulesspan"><span 
class="complete">Break PDFBox into modules</span></h2>
+<h2 id="break-pdfbox-into-modules"><span class="complete">Break PDFBox into 
modules</span></h2>
 
 <p><span class="complete">In order to support different use cases and provide 
a minimal toolset PDFBox 2.0.0 should be 
 separated into different modules. This goes inline with rearranging some of 
the code
 e.g. remove AWT from PDDocument.
 </span></p>
 
-<h2 id="span-classcompleteenhance-the-font-renderingspan"><span 
class="complete">Enhance the font rendering</span></h2>
+<h2 id="enhance-the-font-rendering"><span class="complete">Enhance the font 
rendering</span></h2>
 
 <p><span class="complete">PDFBox 2.0.0 will render most of the fonts without 
using AWT.</span></p>
 
@@ -183,7 +183,7 @@ enhanced that situation but there is a need to have a 
cleaner foundation broken
 <p>In addition, handling documents which are not conforming shouldn’t be 
part of the core parser
 but of an extensible approach, e.g. by adding hooks to allow for handling 
parsing exceptions.</p>
 
-<h2 
id="span-classcompleteadd-the-ability-to-create-pdfs-using-unicode-encoded-textspan"><span
 class="complete">Add the ability to create PDFs using unicode encoded 
text</span></h2>
+<h2 id="add-the-ability-to-create-pdfs-using-unicode-encoded-text"><span 
class="complete">Add the ability to create PDFs using unicode encoded 
text</span></h2>
 
 <p><span class="complete">The recent PDFBox version is limited to WinANSI 
encoded text. 2.0.0 should have unicode support as well.</span></p>
 

http://git-wip-us.apache.org/repos/asf/pdfbox-docs/blob/87bb0639/content/index.html
----------------------------------------------------------------------
diff --git a/content/index.html b/content/index.html
index 1d198af..6782ddf 100644
--- a/content/index.html
+++ b/content/index.html
@@ -131,7 +131,7 @@
                 </ul>
             </div>
             <div class="col-xs-12 col-sm-9">
-                <h1 id="apache-pdfboxsupregsup---a-java-pdf-library">Apache 
PDFBox<sup>®</sup> - A Java PDF Library</h1>
+                <h1 id="apache-pdfbox---a-java-pdf-library">Apache 
PDFBox<sup>®</sup> - A Java PDF Library</h1>
 
 <p class="lead">The Apache PDFBox<sup>&reg;</sup> library is an open source 
Java tool for working with
     PDF documents. This project allows creation of new PDF documents, 
manipulation of existing
@@ -150,7 +150,7 @@ Apache PDFBox version 2.0.5. It is available for download 
at:</p>
 
 <h2 id="getting-help">Getting Help</h2>
 
-<p>To get help on using PDFBox, please <a 
href="&#109;&#097;&#105;&#108;&#116;&#111;:&#117;&#115;&#101;&#114;&#115;&#045;&#115;&#117;&#098;&#115;&#099;&#114;&#105;&#098;&#101;&#064;&#112;&#100;&#102;&#098;&#111;&#120;&#046;&#097;&#112;&#097;&#099;&#104;&#101;&#046;&#111;&#114;&#103;">Subscribe
 to the Users Mailing List</a> and post your
+<p>To get help on using PDFBox, please <a 
href="mailto:[email protected]";>Subscribe to the Users Mailing 
List</a> and post your
 questions there. We’re happy to help.</p>
 
 <p>The project is a volunteer effort and we’re always looking for interested 
people to help
@@ -161,38 +161,38 @@ skills. Subscribe to the <a 
href="/mailinglists.html">Mailing Lists</a> and find
 
 <div class="row">
     <div class="col-md-3">
-        <header><h4><svg aria-hidden="true" class="open-iconic 
open-iconic-box" width="8" height="8" viewbox="0 0 8 8" role="img" 
version="1.1" alt="box image"><path d="M0 0v1h8v-1h-8zm0 2v5.91c0 
.05.04.09.09.09h7.81c.05 0 .09-.04.09-.09v-5.91h-2.97v1.03h-2.03v-1.03h-3z" 
/></svg>Extract Text</h4></header>
+        <header><h4><svg aria-hidden="true" class="open-iconic 
open-iconic-box" width="8" height="8" viewBox="0 0 8 8" role="img" 
version="1.1" alt="box image"><path d="M0 0v1h8v-1h-8zm0 2v5.91c0 
.05.04.09.09.09h7.81c.05 0 .09-.04.09-.09v-5.91h-2.97v1.03h-2.03v-1.03h-3z" 
/></svg>Extract Text</h4></header>
         <p>Extract Unicode text from PDF files.</p>
     </div>
     <div class="col-md-3">
-        <header><h4><svg aria-hidden="true" class="open-iconic 
open-iconic-box" width="8" height="8" viewbox="0 0 8 8" role="img" 
version="1.1" alt="box image"><path d="M0 0v1h8v-1h-8zm0 2v5.91c0 
.05.04.09.09.09h7.81c.05 0 .09-.04.09-.09v-5.91h-2.97v1.03h-2.03v-1.03h-3z" 
/></svg>Split &amp; Merge</h4></header>
+        <header><h4><svg aria-hidden="true" class="open-iconic 
open-iconic-box" width="8" height="8" viewBox="0 0 8 8" role="img" 
version="1.1" alt="box image"><path d="M0 0v1h8v-1h-8zm0 2v5.91c0 
.05.04.09.09.09h7.81c.05 0 .09-.04.09-.09v-5.91h-2.97v1.03h-2.03v-1.03h-3z" 
/></svg>Split &amp; Merge</h4></header>
         <p>Split a single PDF into many files or merge multiple PDF files.</p>
     </div>
     <div class="col-md-3">
-        <header><h4><svg aria-hidden="true" class="open-iconic 
open-iconic-box" width="8" height="8" viewbox="0 0 8 8" role="img" 
version="1.1" alt="box image"><path d="M0 0v1h8v-1h-8zm0 2v5.91c0 
.05.04.09.09.09h7.81c.05 0 .09-.04.09-.09v-5.91h-2.97v1.03h-2.03v-1.03h-3z" 
/></svg>Fill Forms</h4></header>
+        <header><h4><svg aria-hidden="true" class="open-iconic 
open-iconic-box" width="8" height="8" viewBox="0 0 8 8" role="img" 
version="1.1" alt="box image"><path d="M0 0v1h8v-1h-8zm0 2v5.91c0 
.05.04.09.09.09h7.81c.05 0 .09-.04.09-.09v-5.91h-2.97v1.03h-2.03v-1.03h-3z" 
/></svg>Fill Forms</h4></header>
         <p>Extract data from PDF forms or fill a PDF form.</p>
     </div>
     <div class="col-md-3">
-        <header><h4><svg aria-hidden="true" class="open-iconic 
open-iconic-box" width="8" height="8" viewbox="0 0 8 8" role="img" 
version="1.1" alt="box image"><path d="M0 0v1h8v-1h-8zm0 2v5.91c0 
.05.04.09.09.09h7.81c.05 0 .09-.04.09-.09v-5.91h-2.97v1.03h-2.03v-1.03h-3z" 
/></svg>Preflight</h4></header>
+        <header><h4><svg aria-hidden="true" class="open-iconic 
open-iconic-box" width="8" height="8" viewBox="0 0 8 8" role="img" 
version="1.1" alt="box image"><path d="M0 0v1h8v-1h-8zm0 2v5.91c0 
.05.04.09.09.09h7.81c.05 0 .09-.04.09-.09v-5.91h-2.97v1.03h-2.03v-1.03h-3z" 
/></svg>Preflight</h4></header>
         <p>Validate PDF files against the PDF/A-1b standard.</p>
     </div>
 </div>
 
 <div class="row">
     <div class="col-md-3">
-        <header><h4><svg aria-hidden="true" class="open-iconic 
open-iconic-box" width="8" height="8" viewbox="0 0 8 8" role="img" 
version="1.1" alt="box image"><path d="M0 0v1h8v-1h-8zm0 2v5.91c0 
.05.04.09.09.09h7.81c.05 0 .09-.04.09-.09v-5.91h-2.97v1.03h-2.03v-1.03h-3z" 
/></svg>Print</h4></header>
+        <header><h4><svg aria-hidden="true" class="open-iconic 
open-iconic-box" width="8" height="8" viewBox="0 0 8 8" role="img" 
version="1.1" alt="box image"><path d="M0 0v1h8v-1h-8zm0 2v5.91c0 
.05.04.09.09.09h7.81c.05 0 .09-.04.09-.09v-5.91h-2.97v1.03h-2.03v-1.03h-3z" 
/></svg>Print</h4></header>
         <p>Print a PDF file using the standard Java printing API.</p>
     </div>
     <div class="col-md-3">
-        <header><h4><svg aria-hidden="true" class="open-iconic 
open-iconic-box" width="8" height="8" viewbox="0 0 8 8" role="img" 
version="1.1" alt="box image"><path d="M0 0v1h8v-1h-8zm0 2v5.91c0 
.05.04.09.09.09h7.81c.05 0 .09-.04.09-.09v-5.91h-2.97v1.03h-2.03v-1.03h-3z" 
/></svg>Save as Image</h4></header>
+        <header><h4><svg aria-hidden="true" class="open-iconic 
open-iconic-box" width="8" height="8" viewBox="0 0 8 8" role="img" 
version="1.1" alt="box image"><path d="M0 0v1h8v-1h-8zm0 2v5.91c0 
.05.04.09.09.09h7.81c.05 0 .09-.04.09-.09v-5.91h-2.97v1.03h-2.03v-1.03h-3z" 
/></svg>Save as Image</h4></header>
         <p>Save PDFs as image files, such as PNG or JPEG.</p>
     </div>
     <div class="col-md-3">
-        <header><h4><svg aria-hidden="true" class="open-iconic 
open-iconic-box" width="8" height="8" viewbox="0 0 8 8" role="img" 
version="1.1" alt="box image"><path d="M0 0v1h8v-1h-8zm0 2v5.91c0 
.05.04.09.09.09h7.81c.05 0 .09-.04.09-.09v-5.91h-2.97v1.03h-2.03v-1.03h-3z" 
/></svg>Create PDFs</h4></header>
+        <header><h4><svg aria-hidden="true" class="open-iconic 
open-iconic-box" width="8" height="8" viewBox="0 0 8 8" role="img" 
version="1.1" alt="box image"><path d="M0 0v1h8v-1h-8zm0 2v5.91c0 
.05.04.09.09.09h7.81c.05 0 .09-.04.09-.09v-5.91h-2.97v1.03h-2.03v-1.03h-3z" 
/></svg>Create PDFs</h4></header>
         <p>Create a PDF from scratch, with embedded fonts and images.</p>
     </div>
     <div class="col-md-3">
-        <header><h4><svg aria-hidden="true" class="open-iconic 
open-iconic-box" width="8" height="8" viewbox="0 0 8 8" role="img" 
version="1.1" alt="box image"><path d="M0 0v1h8v-1h-8zm0 2v5.91c0 
.05.04.09.09.09h7.81c.05 0 .09-.04.09-.09v-5.91h-2.97v1.03h-2.03v-1.03h-3z" 
/></svg>Signing</h4></header>
+        <header><h4><svg aria-hidden="true" class="open-iconic 
open-iconic-box" width="8" height="8" viewBox="0 0 8 8" role="img" 
version="1.1" alt="box image"><path d="M0 0v1h8v-1h-8zm0 2v5.91c0 
.05.04.09.09.09h7.81c.05 0 .09-.04.09-.09v-5.91h-2.97v1.03h-2.03v-1.03h-3z" 
/></svg>Signing</h4></header>
         <p>Digitally sign PDF files.</p>
     </div>
 </div>

http://git-wip-us.apache.org/repos/asf/pdfbox-docs/blob/87bb0639/content/mailinglists.html
----------------------------------------------------------------------
diff --git a/content/mailinglists.html b/content/mailinglists.html
index d3d2b36..f978662 100644
--- a/content/mailinglists.html
+++ b/content/mailinglists.html
@@ -165,27 +165,27 @@ to the <strong>Commit Mailing List</strong>.</p>
     <tr>
       <td>Users</td>
       <td>[email protected]</td>
-      <td><a 
href="&#109;&#097;&#105;&#108;&#116;&#111;:&#117;&#115;&#101;&#114;&#115;&#045;&#115;&#117;&#098;&#115;&#099;&#114;&#105;&#098;&#101;&#064;&#112;&#100;&#102;&#098;&#111;&#120;&#046;&#097;&#112;&#097;&#099;&#104;&#101;&#046;&#111;&#114;&#103;">Subscribe</a></td>
-      <td><a 
href="&#109;&#097;&#105;&#108;&#116;&#111;:&#117;&#115;&#101;&#114;&#115;&#045;&#117;&#110;&#115;&#117;&#098;&#115;&#099;&#114;&#105;&#098;&#101;&#064;&#112;&#100;&#102;&#098;&#111;&#120;&#046;&#097;&#112;&#097;&#099;&#104;&#101;&#046;&#111;&#114;&#103;">Unsubscribe</a></td>
-      <td><a 
href="&#109;&#097;&#105;&#108;&#116;&#111;:&#117;&#115;&#101;&#114;&#115;&#045;&#104;&#101;&#108;&#112;&#064;&#112;&#100;&#102;&#098;&#111;&#120;&#046;&#097;&#112;&#097;&#099;&#104;&#101;&#046;&#111;&#114;&#103;">Help</a></td>
+      <td><a href="mailto:[email protected]";>Subscribe</a></td>
+      <td><a 
href="mailto:[email protected]";>Unsubscribe</a></td>
+      <td><a href="mailto:[email protected]";>Help</a></td>
       <td><a 
href="https://lists.apache.org/[email protected]";>Archive</a></td>
       <td><a href="http://pdfbox-users.markmail.org/";>MarkMail</a></td>
     </tr>
     <tr>
       <td>Developers</td>
       <td>[email protected]</td>
-      <td><a 
href="&#109;&#097;&#105;&#108;&#116;&#111;:&#100;&#101;&#118;&#045;&#115;&#117;&#098;&#115;&#099;&#114;&#105;&#098;&#101;&#064;&#112;&#100;&#102;&#098;&#111;&#120;&#046;&#097;&#112;&#097;&#099;&#104;&#101;&#046;&#111;&#114;&#103;">Subscribe</a></td>
-      <td><a 
href="&#109;&#097;&#105;&#108;&#116;&#111;:&#100;&#101;&#118;&#045;&#117;&#110;&#115;&#117;&#098;&#115;&#099;&#114;&#105;&#098;&#101;&#064;&#112;&#100;&#102;&#098;&#111;&#120;&#046;&#097;&#112;&#097;&#099;&#104;&#101;&#046;&#111;&#114;&#103;">Unsubscribe</a></td>
-      <td><a 
href="&#109;&#097;&#105;&#108;&#116;&#111;:&#100;&#101;&#118;&#045;&#104;&#101;&#108;&#112;&#064;&#112;&#100;&#102;&#098;&#111;&#120;&#046;&#097;&#112;&#097;&#099;&#104;&#101;&#046;&#111;&#114;&#103;">Help</a></td>
+      <td><a href="mailto:[email protected]";>Subscribe</a></td>
+      <td><a 
href="mailto:[email protected]";>Unsubscribe</a></td>
+      <td><a href="mailto:[email protected]";>Help</a></td>
       <td><a 
href="https://lists.apache.org/[email protected]";>Archive</a></td>
       <td><a href="http://pdfbox-dev.markmail.org/";>MarkMail</a></td>
     </tr>
     <tr>
       <td>Commits List</td>
       <td>[email protected]</td>
-      <td><a 
href="&#109;&#097;&#105;&#108;&#116;&#111;:&#099;&#111;&#109;&#109;&#105;&#116;&#115;&#045;&#115;&#117;&#098;&#115;&#099;&#114;&#105;&#098;&#101;&#064;&#112;&#100;&#102;&#098;&#111;&#120;&#046;&#097;&#112;&#097;&#099;&#104;&#101;&#046;&#111;&#114;&#103;">Subscribe</a></td>
-      <td><a 
href="&#109;&#097;&#105;&#108;&#116;&#111;:&#099;&#111;&#109;&#109;&#105;&#116;&#115;&#045;&#117;&#110;&#115;&#117;&#098;&#115;&#099;&#114;&#105;&#098;&#101;&#064;&#112;&#100;&#102;&#098;&#111;&#120;&#046;&#097;&#112;&#097;&#099;&#104;&#101;&#046;&#111;&#114;&#103;">Unsubscribe</a></td>
-      <td><a 
href="&#109;&#097;&#105;&#108;&#116;&#111;:&#099;&#111;&#109;&#109;&#105;&#116;&#115;&#045;&#104;&#101;&#108;&#112;&#064;&#112;&#100;&#102;&#098;&#111;&#120;&#046;&#097;&#112;&#097;&#099;&#104;&#101;&#046;&#111;&#114;&#103;">Help</a></td>
+      <td><a 
href="mailto:[email protected]";>Subscribe</a></td>
+      <td><a 
href="mailto:[email protected]";>Unsubscribe</a></td>
+      <td><a href="mailto:[email protected]";>Help</a></td>
       <td><a 
href="https://lists.apache.org/[email protected]";>Archive</a></td>
       <td><a href="http://pdfbox-commits.markmail.org/";>MarkMail</a></td>
     </tr>

http://git-wip-us.apache.org/repos/asf/pdfbox-docs/blob/87bb0639/content/siteupdate.html
----------------------------------------------------------------------
diff --git a/content/siteupdate.html b/content/siteupdate.html
index ed1f1bc..6b6c3ce 100644
--- a/content/siteupdate.html
+++ b/content/siteupdate.html
@@ -171,7 +171,7 @@
 
 <p>Add the following server configuration in your ~/.m2/settings.xml file</p>
 
-<div class="highlighter-rouge"><pre class="highlight"><code><span 
class="nt">&lt;server&gt;</span>
+<div class="language-xml highlighter-rouge"><pre class="highlight"><code><span 
class="nt">&lt;server&gt;</span>
   <span class="nt">&lt;id&gt;</span>pdfbox-site<span 
class="nt">&lt;/id&gt;</span>
   <span class="nt">&lt;username&gt;</span>** USERNAME **<span 
class="nt">&lt;/username&gt;</span>
   <span class="nt">&lt;password&gt;</span>** PASSWORD **<span 
class="nt">&lt;/password&gt;</span>

Reply via email to