From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on inbox.vuxu.org X-Spam-Level: X-Spam-Status: No, score=0.0 required=5.0 tests=UNPARSEABLE_RELAY autolearn=ham autolearn_force=no version=3.4.4 Received: (qmail 6346 invoked from network); 16 May 2021 22:28:59 -0000 Received: from bsd.lv (HELO mandoc.bsd.lv) (66.111.2.12) by inbox.vuxu.org with ESMTPUTF8; 16 May 2021 22:28:59 -0000 Received: from fantadrom.bsd.lv (localhost [127.0.0.1]) by mandoc.bsd.lv (OpenSMTPD) with ESMTP id 6fceceab for ; Sun, 16 May 2021 17:28:57 -0500 (EST) Received: from localhost (mandoc.bsd.lv [local]) by mandoc.bsd.lv (OpenSMTPD) with ESMTPA id 6eef8bd5 for ; Sun, 16 May 2021 17:28:57 -0500 (EST) Date: Sun, 16 May 2021 17:28:57 -0500 (EST) X-Mailinglist: mandoc-source Reply-To: source@mandoc.bsd.lv MIME-Version: 1.0 From: schwarze@mandoc.bsd.lv To: source@mandoc.bsd.lv Subject: mandoc: test font modifiers in the layout; related to tbl_html.c rev. X-Mailer: activitymail 1.26, http://search.cpan.org/dist/activitymail/ Content-Type: text/plain; charset=utf-8 Message-ID: Log Message: ----------- test font modifiers in the layout; related to tbl_html.c rev. 1.34 Modified Files: -------------- mandoc/regress/tbl/layout: Makefile Added Files: ----------- mandoc/regress/tbl/layout: font.in font.out_ascii font.out_html Revision Data ------------- --- /dev/null +++ regress/tbl/layout/font.out_html @@ -0,0 +1,10 @@ + + + + + + + + + +
boldroman
romanitalic
--- /dev/null +++ regress/tbl/layout/font.out_ascii @@ -0,0 +1,20 @@ +TBL-LAYOUT-FONT(1) General Commands Manual TBL-LAYOUT-FONT(1) + + + +NNAAMMEE + tbl-layout-font - font modifiers in the table layout + +DDEESSCCRRIIPPTTIIOONN + BEGINTEST + + +---------------+ + |bboolldd roman | + +---------------+ + |roman _i_t_a_l_i_c | + +---------------+ + ENDTEST + + + +OpenBSD May 16, 2021 TBL-LAYOUT-FONT(1) --- /dev/null +++ regress/tbl/layout/font.in @@ -0,0 +1,16 @@ +.\" $OpenBSD: font.in,v 1.1 2021/05/16 22:23:57 schwarze Exp $ +.TH TBL-LAYOUT-FONT 1 "May 16, 2021" +.SH NAME +tbl-layout-font \- font modifiers in the table layout +.SH DESCRIPTION +BEGINTEST +.TS +box tab(:); +lb r +l ri. +bold:roman +_ +roman:italic +.TE +.PP +ENDTEST Index: Makefile =================================================================== RCS file: /home/cvs/mandoc/mandoc/regress/tbl/layout/Makefile,v retrieving revision 1.6 retrieving revision 1.7 diff -Lregress/tbl/layout/Makefile -Lregress/tbl/layout/Makefile -u -p -r1.6 -r1.7 --- regress/tbl/layout/Makefile +++ regress/tbl/layout/Makefile @@ -1,9 +1,10 @@ -# $OpenBSD: Makefile,v 1.6 2020/01/11 20:56:26 schwarze Exp $ +# $OpenBSD: Makefile,v 1.8 2021/05/16 22:23:57 schwarze Exp $ -REGRESS_TARGETS = badspan center complex empty emptycol emptyline +REGRESS_TARGETS = badspan center complex empty emptycol emptyline font REGRESS_TARGETS += lines lines-nogroff numbers REGRESS_TARGETS += shortlines spacing spacing-nogroff span LINT_TARGETS = badspan complex empty spacing-nogroff +HTML_TARGETS = font # groff-1.22.4 defects: # - When the layout is completely empty, -- To unsubscribe send an email to source+unsubscribe@mandoc.bsd.lv