You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@pdfbox.apache.org by ms...@apache.org on 2015/10/21 00:28:15 UTC

svn commit: r1709695 - in /pdfbox/cmssite/branches/jekyll-migration: _config.yml content/1.8/cookbook/documentcreation.mdtext content/references.mdtext content/team.mdtext

Author: msahyoun
Date: Tue Oct 20 22:28:14 2015
New Revision: 1709695

URL: http://svn.apache.org/viewvc?rev=1709695&view=rev
Log:
PDFBOX-3040: fix tables

Modified:
    pdfbox/cmssite/branches/jekyll-migration/_config.yml
    pdfbox/cmssite/branches/jekyll-migration/content/1.8/cookbook/documentcreation.mdtext
    pdfbox/cmssite/branches/jekyll-migration/content/references.mdtext
    pdfbox/cmssite/branches/jekyll-migration/content/team.mdtext

Modified: pdfbox/cmssite/branches/jekyll-migration/_config.yml
URL: http://svn.apache.org/viewvc/pdfbox/cmssite/branches/jekyll-migration/_config.yml?rev=1709695&r1=1709694&r2=1709695&view=diff
==============================================================================
--- pdfbox/cmssite/branches/jekyll-migration/_config.yml (original)
+++ pdfbox/cmssite/branches/jekyll-migration/_config.yml Tue Oct 20 22:28:14 2015
@@ -15,5 +15,10 @@ destination: ./target
 layouts_dir:  _layouts
 
 markdown_ext: "markdown,mkdown,mkdn,mkd,md,mdtext"
-markdown: kramdown
-highlighter:    pygments
+
+encoding: UTF-8
+markdown: redcarpet
+
+redcarpet:
+    extensions: ["no_intra_emphasis", "tables", "autolink", "strikethrough", "with_toc_data"]
+

Modified: pdfbox/cmssite/branches/jekyll-migration/content/1.8/cookbook/documentcreation.mdtext
URL: http://svn.apache.org/viewvc/pdfbox/cmssite/branches/jekyll-migration/content/1.8/cookbook/documentcreation.mdtext?rev=1709695&r1=1709694&r2=1709695&view=diff
==============================================================================
--- pdfbox/cmssite/branches/jekyll-migration/content/1.8/cookbook/documentcreation.mdtext (original)
+++ pdfbox/cmssite/branches/jekyll-migration/content/1.8/cookbook/documentcreation.mdtext Tue Oct 20 22:28:14 2015
@@ -9,20 +9,21 @@ title:  Cookbook - Document Creation
 
 This small sample shows how to create a new PDF document using PDFBox.
 
-	:::java
-	// Create a new empty document
-	PDDocument document = new PDDocument();
-		
-	// Create a new blank page and add it to the document
-	PDPage blankPage = new PDPage();
-	document.addPage( blankPage );
-		
-	// Save the newly created document
-	document.save("BlankPage.pdf");
-        
-	// finally make sure that the document is properly
-	// closed.
-	document.close();
+~~~java
+// Create a new empty document
+PDDocument document = new PDDocument();
+
+// Create a new blank page and add it to the document
+PDPage blankPage = new PDPage();
+document.addPage( blankPage );
+
+// Save the newly created document
+document.save("BlankPage.pdf");
+
+// finally make sure that the document is properly
+// closed.
+document.close();
+~~~
 
 ## Hello World using a PDF base font
 

Modified: pdfbox/cmssite/branches/jekyll-migration/content/references.mdtext
URL: http://svn.apache.org/viewvc/pdfbox/cmssite/branches/jekyll-migration/content/references.mdtext?rev=1709695&r1=1709694&r2=1709695&view=diff
==============================================================================
--- pdfbox/cmssite/branches/jekyll-migration/content/references.mdtext (original)
+++ pdfbox/cmssite/branches/jekyll-migration/content/references.mdtext Tue Oct 20 22:28:14 2015
@@ -11,7 +11,7 @@ Please file an [improvement issue](https
 ## Projects
 
 | Project Name | License | Project Description |
-| -- | -- | -- |
+| --- | --- | --- |
 | [Alfresco](http://www.alfresco.org/) | LGPL - commercial services/support/training is available | Alfresco is an open source, open-standards content repository built by the most experienced content management team that includes the co-founder of Documentum.|
 | [Apache Nutch](http://nutch.apache.org/) | Apache License V2.0 | Apache Nutch is open source web-search software. It builds on Apache Lucene, adding web-specifics, such as a crawler, a link-graph database, parsers for HTML and other document formats, etc.|
 | [Apache Tika](http://tika.apache.org/) | Apache License V2.0 | Apache Tika is a toolkit for detecting and extracting metadata and structured text content from various documents using existing parser libraries.|
@@ -42,7 +42,7 @@ Please file an [improvement issue](https
 ## Articles/Books
 
 | Article Name | Article Abstract|
-|--|--|
+| --- | --- |
 | Build an eDoc Reader for your iPod <br/> [Part 1 - User Interface](http://www.oreillynet.com/pub/a/mac/2004/12/14/ipod_reader.html) <br/> [Part 2 - Document Reading Engine](http://www.oreillynet.com/pub/a/mac/2004/12/17/ipod_reader.html) <br/> [Part 3 - *Integration with PDFBox*](http://www.oreillynet.com/pub/a/mac/2005/01/07/ipod_reader.html) | A three part article that discusses the implementation of the PodReader application. PodReader is Cocoa application written in Objective-C and article discusses how to use the Cocoa-Java bridge to integrate with the Java version of PDFBox.|
 | [Lucene In Action](http://www.manning.com/hatcher2/) | A book that discusses integrating with the lucene search engine. One chapter discusses how to index various file formats and highlights PDFBox for indexing PDF documents.|
 | [Java Developers Journal - March 2005](http://java.sys-con.com/node/48543) | An article written by the lead developer of PDFBox discussing text extraction and AcroForm integration using PDFBox functionality.|

Modified: pdfbox/cmssite/branches/jekyll-migration/content/team.mdtext
URL: http://svn.apache.org/viewvc/pdfbox/cmssite/branches/jekyll-migration/content/team.mdtext?rev=1709695&r1=1709694&r2=1709695&view=diff
==============================================================================
--- pdfbox/cmssite/branches/jekyll-migration/content/team.mdtext (original)
+++ pdfbox/cmssite/branches/jekyll-migration/content/team.mdtext Tue Oct 20 22:28:14 2015
@@ -16,30 +16,30 @@ Get involved today. All contributions to
 
 The following is a list of developers with commit privileges that have directly contributed to the project in one way or another.
 
-| Id | Name | Roles |
-|--|--|--|
-| adam | Adam Nichols | PMC Member |
-| lehmi | Andreas Lehmkühler | PMC Chair |
-| blitchfield | Ben Litchfield | PMC Member |
-| carrier | Brian Carrier | PMC Member |
-| danielwilson | Daniel Wilson | PMC Member |
-| gbailleul | Guillaume Bailleul | PMC Member |
-| jeremias | Jeremias Maerki | PMC Member |
-| koch | Johannes Koch | PMC Member |
-| jahewson | John Hewson | PMC Member |
-| kjackson | Kevin Jackson | PMC Member |
-| msahyoun | Maruan Sahyoun | PMC Member |
-| pkoch | Phillipp Koch | PMC Member |
-| tchojecki | Thomas Chojecki | PMC Member |
-| tboehme | Timo Boehme | PMC Member |
-| tilman | Tilman Hausherr | PMC Member |
-| vfed | Villu Ruusmann | PMC Member |
+| Id            | Name                  | Roles      | 
+| ------------- | --------------------- | ---------- |
+| adam          | Adam Nichols          | PMC Member |
+| lehmi         | Andreas Lehmkühler    | PMC Chair  |
+| blitchfield   | Ben Litchfield        | PMC Member |
+| carrier       | Brian Carrier         | PMC Member |
+| danielwilson  | Daniel Wilson         | PMC Member |
+| gbailleul     | Guillaume Bailleul    | PMC Member |
+| jeremias      | Jeremias Maerki       | PMC Member |
+| koch          | Johannes Koch         | PMC Member |
+| jahewson      | John Hewson           | PMC Member |
+| kjackson      | Kevin Jackson         | PMC Member |
+| msahyoun      | Maruan Sahyoun        | PMC Member |
+| pkoch         | Phillipp Koch         | PMC Member |
+| tchojecki     | Thomas Chojecki       | PMC Member |
+| tboehme       | Timo Boehme           | PMC Member |
+| tilman        | Tilman Hausherr       | PMC Member |
+| vfed          | Villu Ruusmann        | PMC Member |
 
 ## Emeritus members
 
 The following is a list of former developers going emeritus from the PDFBox PMC.
 
-| Id | Name |
-|--|--|--|
-| leleueri | Eric Leleu |
-| jukka | Jukka Zitting |
+| Id            | Name                  | Roles      | 
+| ------------- | -------------         | ---------- |
+| leleueri      | Eric Leleu            |            |
+| jukka         | Jukka Zitting         |            |