Fix presentation of man page tables

Currently the use of "*" in tables is causing go-md2man
to screw up the format of the man page.

This PR removes the "*" since it is not really necessary.

Signed-off-by: Daniel J Walsh <dwalsh@redhat.com>
This commit is contained in:
Daniel J Walsh 2020-01-03 10:11:17 -05:00
parent 50b4446376
commit 185373bfeb
No known key found for this signature in database
GPG key ID: A2DF901DABE2C028
2 changed files with 2 additions and 2 deletions

View file

@ -22,7 +22,7 @@ Valid placeholders for the Go template are listed below:
| **Placeholder** | **Description** | | **Placeholder** | **Description** |
| --------------- | ----------------------------------------------------------------------------- | | --------------- | ----------------------------------------------------------------------------- |
| .ID | Image ID | | .ID | Image ID |
| .Created | if **--human**, time elapsed since creation, otherwise time stamp of creation | | .Created | if --human, time elapsed since creation, otherwise time stamp of creation |
| .CreatedBy | Command used to create the layer | | .CreatedBy | Command used to create the layer |
| .Size | Size of layer on disk | | .Size | Size of layer on disk |
| .Comment | Comment for the layer | | .Comment | Comment for the layer |

View file

@ -105,7 +105,7 @@ Valid filters are listed below:
| name | [Name] Container's name | | name | [Name] Container's name |
| label | [Key] or [Key=Value] Label assigned to a container | | label | [Key] or [Key=Value] Label assigned to a container |
| exited | [Int] Container's exit code | | exited | [Int] Container's exit code |
| status | [Status] Container's status: *created*, *exited*, *paused*, *running*, *unknown* | | status | [Status] Container's status: 'created', 'exited', 'paused', 'running', 'unknown' |
| ancestor | [ImageName] Image or descendant used to create container | | ancestor | [ImageName] Image or descendant used to create container |
| before | [ID] or [Name] Containers created before this container | | before | [ID] or [Name] Containers created before this container |
| since | [ID] or [Name] Containers created since this container | | since | [ID] or [Name] Containers created since this container |