The document component

First published at Monday, 16 March 2009

Warning: This blog post is more then 15 years old – read and use with care.

The document component

Conversion between different document markup languages is not only common for Content Management Systems, but also common applications like wikis or forums do it all the day.

In most cases it is just one language used in the user interface, like some wiki dialect, or BBCode and rendering this to HTML. But at some point you might also want to integrate technical documentation, written in Docbook, or render PDF documents for printing.

The document component, from the eZ Components project, knows about different markup languages and can convert between all of them - while the conversion process itself stays highly configurable. The known languages are currently:

Docbook
A XML based document markup language, developed since the early 1990s. It implements the most complete document markup.
ReST
ReStructured Text is a text based format, also with a quite complete markup, which is especially nice to read when viewing text files, but still can be converted to lots of different output formats.
HTML
We all know this. But HTML has issues, when considered as a document markup language, because most documents are framed by layout, navigation, etc. The document component implements a filter stack with some heuristics for efficient HTML conversion.
Wiki
There hundreds of wiki markup flavours out there. The document component can currently read three flavours (Creole, Dokuwiki and Confluence) and write one (Creole). Most wiki dialects lack support for common markup, like footnotes, citations or even inner page links.
eZ XML
The XML based markup language used internally by eZ Publish.

To make the power of these conversions visible, I quickly hacked up a small application, which allows you to enter text in a textarea, validate the input and convert the input between all those markup languages. Have fun playing with that.

The code

The code which does all the conversion stuff is just this, with some additional error handling:

$classes = array( 'rst' => 'ezcDocumentRst', 'docbook' => 'ezcDocumentDocbook', 'creole' => 'ezcDocumentWiki', 'xhtml' => 'ezcDocumentXhtml', 'ezxml' => 'ezcDocumentEzXml', ); $sourceClass = $classes[$from]; $source = new $sourceClass(); $source->options->errorReporting = E_PARSE; $source->loadString( $text ); $destinationClass = $classes[$to]; $destination = new $destinationClass(); $destination->options->errorReporting = E_PARSE; $destination->createFromDocbook( $source->getAsDocbook() ); echo $destination;

It first instantiates the document class representing the input format and loads the passed text. After that the destination format class is created and its content is set from the converted source document.

The document component uses Docbook as an intermediate format, because it covers all markup used by any of the other languages. But if required conversion shortcuts can be implemented, like for direct ReST to HTML conversion.

More examples and starting points for extending the document component with custom markup or custom conversions are offered in the tutorial.

The future

Currently we are working on adding support for ODF reading and writing, to make the Open Document Format an equal member in the set of formats.

Additionally we are implementing user customizable PDF rendering for all documents in this release cycle. This will use different backends, like pecl/haru for the actual PDF creation and focus on styling and proper text rendering. The design document for this is, as always, available in the eZ Components SVN.

You are welcome to contribute support for more markup formats, like additional wiki dialects, BBCode or Markdown - contact us on IRC or using the mailinglist.


Comments

harald at Monday, 16.3. 2009

this is slightly off-topic, but: does anyone know of any ReST parser/formatter written in php? i had a look eZ components few days ago -- but they seem to just use to python document-tools for this?

Kore at Monday, 16.3. 2009

No, "they" / we / I do not use docutils for this. I implemented a ReST parser in PHP. The Horde-Project did the same.

But writing a ReST parser is actually not trivial since ReST is not even possible to specify using a context-free grammar, so that common parser approaches fail here.

I would say that the ReST parser in the document component is now quite complete and relatively bug-free - at least we have lots of tests for it, and are happy to improve it any time you find something broken. And I do not know about items in the ReST specification, which are not implemented, except for some of the default directives, which you can always plug in yourself.

peter at Monday, 16.3. 2009

You always write "the document component". What document component?

Kore at Monday, 16.3. 2009

@peter: Sorry if that was unclear - the document component from the eZ Components project. I added some more links to clarify on that.

harald at Tuesday, 17.3. 2009

many thanks -- i think i have to have a closer look at eZ Components! the document component seems to be very useful, too.

Non_E at Saturday, 25.4. 2009

Hello, this is a really good idea. I think will watch it's progress because format conversion is really necessary.

I just do not like the "new $sourceClass" method of creating instances. I think that it would be wise to force some mandatory interface. That's why I prefer another approach: "new ezcDocument(ezcDocumentEngine $engine)". The class and interface names were chosen arbitraryly for this example.

example essay UK at Thursday, 2.9. 2010

Thanks a lot for enjoying this beauty article with me. I am apreciating it very much! I am new to programming and somehow I learned something about eZ Components. I am looking forward to another great article. Good luck!

Rick at Sunday, 3.10. 2010

its so good to know that ReST is supported.I have never been in the situation to convert the document formats myself but this will surely be of help.will recommend to ppl who want to do conversions.thanks.

resignation letter sample at Sunday, 24.10. 2010

Html is really easy with frontpage or dreamwaver

Research Paper Help at Friday, 26.11. 2010

This is the language that Web pages are written in. If you want to create really great Web pages then you will need to learn this. As far as computer languages go this is the easiest to learn. You can create a Web page without it using a Web page editing program but the program will still use HTML to create the page.

Subscribe to updates

There are multiple ways to stay updated with new posts on my blog: