Skip to content

Commit 9654f2a

Browse files
committed
Revert "added linebreak before .TE (table end)"
This reverts commit 1fc61ec. This change resulted in additional empty rows to be rendered in tables; Before this revert: The operator can identify a container in three ways: ┌──────────────────────┬────────────────────────────────────────────────────────────────────┐ │Identifier type │ Example value │ ├──────────────────────┼────────────────────────────────────────────────────────────────────┤ │UUID long identifier │ "f78375b1c487e03c9438c729345e54db9d20cfa2ac1fc3494b6eb60872e74778" │ ├──────────────────────┼────────────────────────────────────────────────────────────────────┤ │UUID short identifier │ "f78375b1c487" │ ├──────────────────────┼────────────────────────────────────────────────────────────────────┤ │Name │ "evil_ptolemy" │ ├──────────────────────┼────────────────────────────────────────────────────────────────────┤ │ │ │ └──────────────────────┴────────────────────────────────────────────────────────────────────┘ The UUID identifiers come from the Docker daemon, and if a name is not After this revert: The operator can identify a container in three ways: ┌──────────────────────┬────────────────────────────────────────────────────────────────────┐ │Identifier type │ Example value │ ├──────────────────────┼────────────────────────────────────────────────────────────────────┤ │UUID long identifier │ "f78375b1c487e03c9438c729345e54db9d20cfa2ac1fc3494b6eb60872e74778" │ ├──────────────────────┼────────────────────────────────────────────────────────────────────┤ │UUID short identifier │ "f78375b1c487" │ ├──────────────────────┼────────────────────────────────────────────────────────────────────┤ │Name │ "evil_ptolemy" │ └──────────────────────┴────────────────────────────────────────────────────────────────────┘ The UUID identifiers come from the Docker daemon, and if a name is not Signed-off-by: Sebastiaan van Stijn <[email protected]>
1 parent 2d04436 commit 9654f2a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

md2man/roff.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ const (
4545
dtTag = "\n.TP\n"
4646
dd2Tag = "\n"
4747
tableStart = "\n.TS\nallbox;\n"
48-
tableEnd = "\n.TE\n"
48+
tableEnd = ".TE\n"
4949
tableCellStart = "T{\n"
5050
tableCellEnd = "\nT}\n"
5151
)

0 commit comments

Comments
 (0)