1
1
Fork 0
mirror of https://code.mensbeam.com/MensBeam/Arsse.git synced 2024-12-22 13:12:41 +00:00

Move the markdown manpage

Daux uses Cmmonmark, which does not support indention, required for
proper formatting of manual pages. Consequently, the manul page will
instead be standalone.
This commit is contained in:
J. King 2021-05-29 14:05:30 -04:00
parent 176aac0ad7
commit d3a983e7f0
2 changed files with 1 additions and 1 deletions

View file

@ -332,7 +332,7 @@ class RoboFile extends \Robo\Tasks {
* available in $PATH.
*/
public function manpage(): Result {
$src = BASE."docs/en/025_Using_The_Arsse/999_The_Command-Line_Manual_Page.md";
$src = BASE."docs/manpage.md";
$out = BASE."dist/manpage";
return $this->taskExec("pandoc -s -f markdown -t man -o ".escapeshellarg($out)." ".escapeshellarg($src))->run();
}