blob: 37bdb870d6728fe903088f090cc1b319d92887b7 [file] [log] [blame]
<?php
require 'tutorial_autoload.php';
$docbook = new ezcDocumentDocbook();
$docbook->loadFile( 'docbook.xml' );
$converter = new ezcDocumentDocbookToHtmlConverter();
// Remove the inline CSS
$converter->options->styleSheet = null;
// Add custom CSS style sheets
$converter->options->styleSheets = array(
'/styles/screen.css',
);
$html = $converter->convert( $docbook );
echo $html->save();
?>