mirror of
https://code.mensbeam.com/MensBeam/Arsse.git
synced 2024-12-22 13:12:41 +00:00
Turn off "smart" character substitution in Pandoc
This commit is contained in:
parent
d3a983e7f0
commit
2ec7acc50b
2 changed files with 6 additions and 2 deletions
|
@ -334,7 +334,7 @@ class RoboFile extends \Robo\Tasks {
|
|||
public function manpage(): Result {
|
||||
$src = BASE."docs/manpage.md";
|
||||
$out = BASE."dist/manpage";
|
||||
return $this->taskExec("pandoc -s -f markdown -t man -o ".escapeshellarg($out)." ".escapeshellarg($src))->run();
|
||||
return $this->taskExec("pandoc -s -f markdown-smart -t man -o ".escapeshellarg($out)." ".escapeshellarg($src))->run();
|
||||
}
|
||||
|
||||
protected function changelogParse(string $text, string $targetVersion): array {
|
||||
|
|
|
@ -34,4 +34,8 @@ These are documented in the next section **PRIMARY COMMANDS**. Further, seldom-u
|
|||
|
||||
: Adds a new user to the database with the specified username and password. If <*password*> is omitted a random password will be generated and printed.
|
||||
|
||||
: The **--admin** flag may be used to mark the user as an administrator. This has no meaning within the context of The Arsse as a whole, but it is used for access control in the Miniflux and Nextcloud News protocols.
|
||||
The **--admin** flag may be used to mark the user as an administrator. This has no meaning within the context of The Arsse as a whole, but it is used control access to certain features in the Miniflux and Nextcloud News protocols.
|
||||
|
||||
**arsse user remove** <*username*>
|
||||
|
||||
: Immediately removes a user from the database. All associated data (folders, subscriptions, etc.) are also removed.
|
||||
|
|
Loading…
Reference in a new issue