Stars: 835
Forks: 107
Pull Requests: 122
Issues: 146
Watchers: 32
Last Updated: 2023-02-21 10:57:06
Couscous is good.
License: Other
Languages: PHP, HTML, CSS, JavaScript, Shell, Twig, Less
layout |
---|
home |
Couscous generates a GitHub pages website from your markdown documentation.
Everything is documented on couscous.io.
What follows is the documentation for contributors.
Couscous was designed to be as simple as possible. By embracing simplicity, it becomes extremely simple to extend.
The website generation is composed of a list of steps to process the Project
model object:
interface Step
{
/**
* Process the given project.
*
* @param Project $project
*/
public function __invoke(Project $project);
}
Steps are very granular, thus extremely easy to write and test. For example:
LoadConfig
: load the couscous.yml
config fileInstallDependencies
: install the dependencies (using yarn, npm or bower)LoadMarkdownFiles
: load the content of all the *.md
files in memoryRenderMarkdown
: render the markdown contentWriteFiles
: write the in-memory processed files to the target directoryFor example, here is a step that would preprocess Markdown files to put the word "Couscous" in bold:
class PutCouscousInBold implements \Couscous\Step
{
public function __invoke(Project $project)
{
/** @var MarkdownFile[] $markdownFiles */
$markdownFiles = $project->findFilesByType('Couscous\Model\MarkdownFile');
foreach ($markdownFiles as $file) {
$file->content = str_replace('Couscous', '**Couscous**', $file->content);
}
}
}
Couscous uses PHP-DI for wiring everything together with dependency injection.
The full list of steps is configured in src/Application/config.php
.
Couscous deploys by cloning (in a temp directory) the current repository, checking out the gh-pages
branch, generating the website inside it, committing and pushing.
In the future, Couscous will support several deployment strategies.
See the CONTRIBUTING file.
Couscous is released under the MIT License.