summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--mdocterm.16
-rw-r--r--mdoctree.11
-rw-r--r--termact.c4
3 files changed, 9 insertions, 2 deletions
diff --git a/mdocterm.1 b/mdocterm.1
index fd4abf63..ed424ddc 100644
--- a/mdocterm.1
+++ b/mdocterm.1
@@ -64,6 +64,7 @@ which may be
for stdin.
.El
.\" PARAGRAPH
+.Pp
The
.Nm
utility is a formatting front-end for
@@ -94,6 +95,11 @@ To display this manual page:
.\" PARAGRAPH
.Pp
.D1 % mdocmterm \-Wall,error mdocmterm.1
+.\" PARAGRAPH
+.Pp
+To pipe a manual page to the pager:
+.Pp
+.D1 % mdocterm mdocterm.1 | less -R
.\" SECTION
.Sh SEE ALSO
.Xr mdoctree 1 ,
diff --git a/mdoctree.1 b/mdoctree.1
index 0174f888..ff63f3e7 100644
--- a/mdoctree.1
+++ b/mdoctree.1
@@ -64,6 +64,7 @@ which may be
for stdin.
.El
.\" PARAGRAPH
+.Pp
The
.Nm
utility is a formatting front-end for
diff --git a/termact.c b/termact.c
index 12666bbe..845dc56c 100644
--- a/termact.c
+++ b/termact.c
@@ -618,7 +618,7 @@ termp_aq_pre(DECL_ARGS)
if (MDOC_BODY != node->type)
return(1);
- word(p, "\\<");
+ word(p, "<");
p->flags |= TERMP_NOSPACE;
return(1);
}
@@ -632,7 +632,7 @@ termp_aq_post(DECL_ARGS)
if (MDOC_BODY != node->type)
return;
p->flags |= TERMP_NOSPACE;
- word(p, "\\>");
+ word(p, ">");
}