aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorIngo Schwarze <schwarze@openbsd.org>2020-04-04 20:33:33 +0000
committerIngo Schwarze <schwarze@openbsd.org>2020-04-04 20:33:33 +0000
commite03f6c4421e6265e6c69f785a01edfe489ff4f9c (patch)
tree14585118d6b85caaffa94cf46317a78bbbc900bc
parent04879dddb6a40e58404e931790876ac21d5733fc (diff)
downloadmandoc-e03f6c4421e6265e6c69f785a01edfe489ff4f9c.tar.gz
mandoc-e03f6c4421e6265e6c69f785a01edfe489ff4f9c.tar.zst
mandoc-e03f6c4421e6265e6c69f785a01edfe489ff4f9c.zip
automatically tag .SH and .SS in man(7) terminal output
in the same way as it was done for .Sh and .Ss in mdoc(7)
-rw-r--r--man_html.c3
-rw-r--r--man_validate.c27
-rw-r--r--regress/man/IP/empty.out_tag2
-rw-r--r--regress/man/IP/tag.out_tag2
-rw-r--r--regress/man/SH/Makefile3
-rw-r--r--regress/man/SH/paragraph.out_tag4
-rw-r--r--regress/man/SS/Makefile3
-rw-r--r--regress/man/SS/paragraph.out_tag4
-rw-r--r--regress/man/TP/tag.out_tag2
9 files changed, 44 insertions, 6 deletions
diff --git a/man_html.c b/man_html.c
index 202df2b7..80f69e1a 100644
--- a/man_html.c
+++ b/man_html.c
@@ -1,4 +1,4 @@
-/* $Id: man_html.c,v 1.177 2020/03/13 15:32:28 schwarze Exp $ */
+/* $Id: man_html.c,v 1.178 2020/04/04 20:33:33 schwarze Exp $ */
/*
* Copyright (c) 2013-2015, 2017-2020 Ingo Schwarze <schwarze@openbsd.org>
* Copyright (c) 2008-2012, 2014 Kristaps Dzonsons <kristaps@bsd.lv>
@@ -327,7 +327,6 @@ man_SH_pre(MAN_ARGS)
print_otag(h, TAG_SECTION, "c", class);
break;
case ROFFT_HEAD:
- n->flags |= NODE_ID;
print_otag_id(h, tag, class, n);
break;
case ROFFT_BODY:
diff --git a/man_validate.c b/man_validate.c
index 0c2ed8a4..ee634f50 100644
--- a/man_validate.c
+++ b/man_validate.c
@@ -1,4 +1,4 @@
-/* $Id: man_validate.c,v 1.151 2020/03/13 15:32:28 schwarze Exp $ */
+/* $Id: man_validate.c,v 1.152 2020/04/04 20:33:33 schwarze Exp $ */
/*
* Copyright (c) 2010, 2012-2020 Ingo Schwarze <schwarze@openbsd.org>
* Copyright (c) 2008, 2009, 2010, 2011 Kristaps Dzonsons <kristaps@bsd.lv>
@@ -311,9 +311,32 @@ static void
post_SH(CHKARGS)
{
struct roff_node *nc;
+ char *cp, *tag;
- if (n->type != ROFFT_BODY || (nc = n->child) == NULL)
+ nc = n->child;
+ switch (n->type) {
+ case ROFFT_HEAD:
+ tag = NULL;
+ deroff(&tag, n);
+ if (tag != NULL) {
+ for (cp = tag; *cp != '\0'; cp++)
+ if (*cp == ' ')
+ *cp = '_';
+ if (nc != NULL && nc->type == ROFFT_TEXT &&
+ strcmp(nc->string, tag) == 0)
+ tag_put(NULL, TAG_WEAK, n);
+ else
+ tag_put(tag, TAG_FALLBACK, n);
+ free(tag);
+ }
+ return;
+ case ROFFT_BODY:
+ if (nc != NULL)
+ break;
return;
+ default:
+ return;
+ }
if (nc->tok == MAN_PP && nc->body->child != NULL) {
while (nc->body->last != NULL) {
diff --git a/regress/man/IP/empty.out_tag b/regress/man/IP/empty.out_tag
index f35f1120..081683cf 100644
--- a/regress/man/IP/empty.out_tag
+++ b/regress/man/IP/empty.out_tag
@@ -1,3 +1,5 @@
+NAME 5
+DESCRIPTION 8
tag1 15
tag2 17
tag 21
diff --git a/regress/man/IP/tag.out_tag b/regress/man/IP/tag.out_tag
index 5be038db..13ec09ac 100644
--- a/regress/man/IP/tag.out_tag
+++ b/regress/man/IP/tag.out_tag
@@ -1,2 +1,4 @@
+NAME 5
+DESCRIPTION 8
strong 13
weak 15
diff --git a/regress/man/SH/Makefile b/regress/man/SH/Makefile
index f42a85b2..049680bc 100644
--- a/regress/man/SH/Makefile
+++ b/regress/man/SH/Makefile
@@ -1,8 +1,9 @@
-# $OpenBSD: Makefile,v 1.7 2020/02/27 01:25:58 schwarze Exp $
+# $OpenBSD: Makefile,v 1.8 2020/04/04 20:23:07 schwarze Exp $
REGRESS_TARGETS = broken broken_eline empty_before longarg noarg paragraph vert
LINT_TARGETS = broken broken_eline empty_before noarg
HTML_TARGETS = paragraph
+TAG_TARGETS = paragraph
# groff-1.22.3 defects:
# - .SH without args just before EOF causes two additional blank lines.
diff --git a/regress/man/SH/paragraph.out_tag b/regress/man/SH/paragraph.out_tag
new file mode 100644
index 00000000..18a73f7c
--- /dev/null
+++ b/regress/man/SH/paragraph.out_tag
@@ -0,0 +1,4 @@
+NAME 5
+SYNOPSIS 8
+DESCRIPTION 11
+EXAMPLES 16
diff --git a/regress/man/SS/Makefile b/regress/man/SS/Makefile
index edbe4c2c..3a894af2 100644
--- a/regress/man/SS/Makefile
+++ b/regress/man/SS/Makefile
@@ -1,8 +1,9 @@
-# $OpenBSD: Makefile,v 1.5 2020/02/27 01:25:58 schwarze Exp $
+# $OpenBSD: Makefile,v 1.6 2020/04/04 20:23:07 schwarze Exp $
REGRESS_TARGETS = broken broken_eline longarg noarg paragraph vert
LINT_TARGETS = broken broken_eline noarg
HTML_TARGETS = paragraph
+TAG_TARGETS = paragraph
# groff-1.22.3 defects:
# - .SS without args just before EOF causes two additional blank lines.
diff --git a/regress/man/SS/paragraph.out_tag b/regress/man/SS/paragraph.out_tag
new file mode 100644
index 00000000..15451212
--- /dev/null
+++ b/regress/man/SS/paragraph.out_tag
@@ -0,0 +1,4 @@
+NAME 5
+DESCRIPTION 8
+First_subsection 11
+Second_subsection 16
diff --git a/regress/man/TP/tag.out_tag b/regress/man/TP/tag.out_tag
index 88f6cff8..14230d89 100644
--- a/regress/man/TP/tag.out_tag
+++ b/regress/man/TP/tag.out_tag
@@ -1,3 +1,5 @@
+NAME 5
+DESCRIPTION 8
plain 13
strong 19
weak 21