Sign in
apache
/
zetacomponents
/
trunk
/
.
/
Document
/
docs
/
tutorial
/
00_00_convert_rst.php
blob: 90f447c2ac4eff0201250a8e5e5b828bca09e6e0 [
file
] [
log
] [
blame
]
<?
php
require
'tutorial_autoload.php'
;
$document
=
new
ezcDocumentRst
();
$document
->
loadFile
(
'../tutorial.txt'
);
$docbook
=
$document
->
getAsDocbook
();
echo $docbook
->
save
();
?>