-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathbuild-docs.php
More file actions
21 lines (17 loc) · 677 Bytes
/
Copy pathbuild-docs.php
File metadata and controls
21 lines (17 loc) · 677 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<?php
declare(strict_types=1);
require __DIR__ . '/vendor/autoload.php';
use Docsmith\Docsmith;
Docsmith::make()
->source(__DIR__ . '/md')
->output(__DIR__ . '/docs')
->title('Docsmith')
->description('Craft static documentation sites from Markdown with minimal setup.')
->repositoryUrl('https://github.com/MrPunyapal/docsmith')
->siteUrl('https://mrpunyapal.github.io/docsmith')
->editBranch('main')
->editPrefix('md')
->navigationOrder(['Docsmith', 'Installation', 'Usage', 'Architecture', 'Development', 'Open Graph', 'LLM Export', 'Versioned Docs'])
->rightSidebar()
->ogImage(type: 'generated', scope: 'all')
->build();