Yes.
Yes, they work just like on GitHub.com.
Links in Markdown are rewritten to link to HTML pages:
something.md
will be rewritten to something.html
;Something-Else.md
will be rewritten to something-else.html
;CONTRIBUTING.md
will be rewritten to contributing.html
;README.md
will be rewritten to index.html
.Probably not yet, but you are welcome to try. PHP-DI's website has a pseudo-blog where the article list is written manually: it's possible, but not (yet) super easy.
It is planned! In the meantime, you can simply use couscous generate
and upload the files to your webserver manually.
Yes. In your template directory. Add a file called twig.php
with the following contents:
<?php
use Twig_Environment as Environment;
// Use "include_once" since this file may be called multiple times
include_once dirname(__DIR__).'/Twig/MyTwigExtension.php';
return function (Environment $twig) {
$twig->addExtension(new MyTwigExtension());
};
I tried.
Because Couscous is good, and so is this.