Output a blank .TP section after usage to fix rendering issue
diff --git a/help_test.go b/help_test.go
index 5dbffb6..01792ea 100644
--- a/help_test.go
+++ b/help_test.go
@@ -254,7 +254,7 @@
 Longer \fBcommand\fP description
 
 \fBUsage\fP: TestMan [OPTIONS] command [command-OPTIONS]
-
+.TP
 
 \fBAliases\fP: cm, cmd
 
diff --git a/man.go b/man.go
index 95347d0..cd4cadd 100644
--- a/man.go
+++ b/man.go
@@ -141,7 +141,7 @@
 	}
 
 	if len(usage) > 0 {
-		fmt.Fprintf(wr, "\n\\fBUsage\\fP: %s %s\n\n", manQuote(pre), manQuote(usage))
+		fmt.Fprintf(wr, "\n\\fBUsage\\fP: %s %s\n.TP\n", manQuote(pre), manQuote(usage))
 	}
 
 	if len(command.Aliases) > 0 {