Added a user guide based on MkDocs

This commit is contained in:
Cédric Belin
2018-11-21 17:53:26 +01:00
parent 21d1131813
commit 4e9e67a695
11 changed files with 211 additions and 9 deletions

View File

@ -38,7 +38,12 @@ class RoboFile extends Tasks {
* Builds the documentation.
*/
function doc(): void {
$this->_exec('phpdoc');
$this->taskFilesystemStack()
->copy('CHANGELOG.md', 'doc/about/changelog.md')
->copy('LICENSE.md', 'doc/about/license.md')
->run();
$this->_exec('mkdocs build');
}
/**