mirror of
https://code.mensbeam.com/MensBeam/Arsse.git
synced 2024-12-22 13:12:41 +00:00
Work around double spacing
This commit is contained in:
parent
62d49e0d3c
commit
4317a96db1
2 changed files with 3 additions and 4 deletions
|
@ -334,7 +334,6 @@ class RoboFile extends \Robo\Tasks {
|
||||||
*/
|
*/
|
||||||
public function manpage(): Result {
|
public function manpage(): Result {
|
||||||
$t = $this->collectionBuilder();
|
$t = $this->collectionBuilder();
|
||||||
$p = $this->taskParallelExec();
|
|
||||||
$man = [
|
$man = [
|
||||||
'en' => "man1/arsse.1",
|
'en' => "man1/arsse.1",
|
||||||
];
|
];
|
||||||
|
@ -342,9 +341,9 @@ class RoboFile extends \Robo\Tasks {
|
||||||
$src = BASE."manpages/$src.md";
|
$src = BASE."manpages/$src.md";
|
||||||
$out = BASE."dist/man/$out";
|
$out = BASE."dist/man/$out";
|
||||||
$t->addTask($this->taskFilesystemStack()->mkdir(dirname($out), 0755));
|
$t->addTask($this->taskFilesystemStack()->mkdir(dirname($out), 0755));
|
||||||
$p->process("pandoc -s -f markdown-smart -t man -o ".escapeshellarg($out)." ".escapeshellarg($src));
|
$t->addTask($this->taskExec("pandoc -s -f markdown-smart -t man -o ".escapeshellarg($out)." ".escapeshellarg($src)));
|
||||||
|
$t->addTask($this->taskReplaceInFile($out)->regex('/\.\n(?!\.)/s')->to(". "));
|
||||||
}
|
}
|
||||||
$t->addTask($p);
|
|
||||||
return $t->run();
|
return $t->run();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -187,4 +187,4 @@ J. King\
|
||||||
[https://jkingweb.ca/]()
|
[https://jkingweb.ca/]()
|
||||||
|
|
||||||
Dustin Wilson\
|
Dustin Wilson\
|
||||||
[https://dustinwilson.com/]()
|
[https://dustinwilson.com/]()
|
||||||
|
|
Loading…
Reference in a new issue