-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[MER-2446] Adjust styles for web and manpages (#176)
We are trying to use `docs/*` as both command manuals on the web as well as online manual distributed along with the binary. For that, we want to customize go-md2man output, especially the header part. This includes a fork of https://github.com/cpuguy83/go-md2man. This includes the title part and some whitespace handling modifications. Note that go-md2man is licensed under MIT license, which is the same as this repository. The file independently have a license header and a copyright notice with a SPDX header.
- Loading branch information
Showing
23 changed files
with
603 additions
and
135 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,15 @@ | ||
# av-auth-status 1 "" av-cli "Aviator CLI User Manual" | ||
# av-auth-status | ||
|
||
# NAME | ||
## NAME | ||
|
||
av-auth-status - Show info about the logged in user. | ||
av-auth-status - Show info about the logged in user | ||
|
||
# SYNOPSIS | ||
## SYNOPSIS | ||
|
||
`av auth status` | ||
```synopsis | ||
av auth status | ||
``` | ||
|
||
# DESCRIPTION | ||
## DESCRIPTION | ||
|
||
Shows information about the logged in user using their access token. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,15 @@ | ||
# av-pr-fetch 1 "" av-cli "Aviator CLI User Manual" | ||
# av-fetch | ||
|
||
# NAME | ||
## NAME | ||
|
||
av-fetch - Fetch latest repository state from github. | ||
av-fetch - Fetch latest repository state from GitHub | ||
|
||
# SYNOPSIS | ||
## SYNOPSIS | ||
|
||
`` av pr fetch`` | ||
```synopsis | ||
av fetch | ||
``` | ||
|
||
# DESCRIPTION | ||
## DESCRIPTION | ||
|
||
Fetch latest repository state from github. | ||
Fetch latest repository state from GitHub. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,16 @@ | ||
# av-stack-diff 1 "" av-cli "Aviator CLI User Manual" | ||
# av-stack-diff | ||
|
||
# NAME | ||
## NAME | ||
|
||
av-stack-diff - Show the diff between working tree and parent branch. | ||
av-stack-diff - Show the diff between working tree and parent branch | ||
|
||
# SYNOPSIS | ||
## SYNOPSIS | ||
|
||
`av stack diff` | ||
```synopsis | ||
av stack diff | ||
``` | ||
|
||
# DESCRIPTION | ||
## DESCRIPTION | ||
|
||
Generates the diff between the working tree and the parent branch (i.e., the diff between the current branch and the previous branch in the stack). | ||
Generates the diff between the working tree and the parent branch (i.e., the | ||
diff between the current branch and the previous branch in the stack). |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,29 @@ | ||
# av-stack-next 1 "" av-cli "Aviator CLI User Manual" | ||
# av-stack-next | ||
|
||
# NAME | ||
## NAME | ||
|
||
av-stack-next - Checkout a later branch in the stack. | ||
av-stack-next - Checkout a later branch in the stack | ||
|
||
# SYNOPSIS | ||
## SYNOPSIS | ||
|
||
`av stack next [<n> | --last]` | ||
```synopsis | ||
av stack next [<n> | --last] | ||
``` | ||
|
||
# DESCRIPTION | ||
## DESCRIPTION | ||
|
||
Checkout a later branch in the stack. Without any options, this will default to checking out the next branch in the stack. | ||
Checkout a later branch in the stack. Without any options, this will default to | ||
checking out the next branch in the stack. | ||
|
||
# OPTIONS | ||
## OPTIONS | ||
|
||
`<n>` | ||
: Checkout to the branch that is `<n>` branches after the current branch in the stack. | ||
: Checkout to the branch that is `<n>` branches after the current branch in the | ||
stack. | ||
|
||
`--first` | ||
: Checkout to the last branch in the stack. | ||
|
||
# SEE ALSO | ||
## SEE ALSO | ||
|
||
`av-pr-prev`(1) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,29 @@ | ||
# av-stack-prev 1 "" av-cli "Aviator CLI User Manual" | ||
# av-stack-prev | ||
|
||
# NAME | ||
## NAME | ||
|
||
av-stack-prev - Checkout a previous branch in the stack. | ||
av-stack-prev - Checkout a previous branch in the stack | ||
|
||
# SYNOPSIS | ||
## SYNOPSIS | ||
|
||
`av stack prev [<n> | --first]` | ||
```synopsis | ||
av stack prev [<n> | --first] | ||
``` | ||
|
||
# DESCRIPTION | ||
## DESCRIPTION | ||
|
||
Checkout a previous branch in the stack. Without any options, this will default to checking out the previous branch in the stack. | ||
Checkout a previous branch in the stack. Without any options, this will default | ||
to checking out the previous branch in the stack. | ||
|
||
# OPTIONS | ||
## OPTIONS | ||
|
||
`<n>` | ||
: Checkout to the branch that is `<n>` branches before the current branch in the stack. | ||
: Checkout to the branch that is `<n>` branches before the current branch in the | ||
stack. | ||
|
||
`--first` | ||
: Checkout to the first branch in the stack. | ||
|
||
# SEE ALSO | ||
## SEE ALSO | ||
|
||
`av-pr-next`(1) |
Oops, something went wrong.