1. Go to this page and download the library: Download berlioz/doc-parser library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
berlioz / doc-parser example snippets
use Berlioz\DocParser\DocGenerator;
use Berlioz\DocParser\Parser\Markdown;
use League\Flysystem\Filesystem;
use League\Flysystem\Local\LocalFilesystemAdapter;
$version = '1.0';
$docGenerator = new DocGenerator();
$docGenerator->addParser(new Markdown());
$documentation =
$docGenerator->handle(
$version,
new Filesystem(new LocalFilesystemAdapter('/path-of-project/doc'))
);
use Berlioz\DocParser\Doc\File\FileInterface;
use Berlioz\DocParser\Doc\File\Page;
/** @var \Berlioz\DocParser\Doc\Documentation $documentation */
$pages = $documentation->getFiles(fn(FileInterface $file) => $file instanceof Page);
use Berlioz\DocParser\Doc\Documentation;
use Berlioz\DocParser\Doc\File\Page;
/** @var Documentation $documentation */
$file = $documentation->handle('path/of/my/page');
if (null === $file) {
// Show not found error
}
// Raw file?
if (!$file instanceof Page) {
// Return \Psr\Http\Message\ResponseInterface object
return $file->response();
}
// Show HTML content of my page
echo $file->getContents();
use Berlioz\DocParser\DocGenerator;
use Berlioz\DocParser\Treatment\BootstrapTreatment;
/** @var DocGenerator $docGenerator */
$docGenerator->addTreatment(new BootstrapTreatment($docGenerator));
use Berlioz\DocParser\DocCacheGenerator;
use Berlioz\DocParser\DocGenerator;
use Berlioz\DocParser\Parser\Markdown;
use League\Flysystem\Filesystem;
use League\Flysystem\Local\LocalFilesystemAdapter;
$version = '1.0';
$cacheFilesystem = new Filesystem(new LocalFilesystemAdapter('/path-of-project/cache'));
$docCacheGenerator = new DocCacheGenerator($cacheFilesystem);
if (null === ($documentation = $docCacheGenerator->get($version))) {
$docGenerator = new DocGenerator();
$docGenerator->addParser(new Markdown());
$documentation =
$docGenerator->handle(
$version,
new Filesystem(new LocalFilesystemAdapter('/path-of-project/doc'))
);
$docCacheGenerator->save($documentation);
}
$documentation->handle('path/of/my/page');
Loading please wait ...
Before you can download the PHP files, the dependencies should be resolved. This can take some minutes. Please be patient.