gnu-social/vendor/zetacomponents/document/docs/tutorial/00_03_write_rst.php

14 lines
206 B
PHP
Raw Normal View History

2020-08-07 23:42:38 +01:00
<?php
require 'tutorial_autoload.php';
$docbook = new ezcDocumentDocbook();
$docbook->loadFile( 'docbook.xml' );
$rst = new ezcDocumentRst();
$rst->createFromDocbook( $docbook );
echo $rst->save();
?>