blob: b8026031c0b239cd4dd7c3f48fec9d2707d62464 [file] [log] [blame]
<?php
require 'tutorial_autoload.php';
$document = new ezcDocumentWiki();
$document->options->tokenizer = new ezcDocumentWikiConfluenceTokenizer();
$document->loadString( '
h1. Example text
Just some exaple paragraph with a heading, some *emphasis* markup and a
[link|http://ezcomponents.org].' );
$docbook = $document->getAsDocbook();
echo $docbook->save();
?>