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=T_SCC_BODY_TEXT_LINE autolearn=ham autolearn_force=no version=3.4.4 Received: (qmail 18097 invoked from network); 6 Jul 2022 15:34:55 -0000 Received: from bsd.lv (HELO mandoc.bsd.lv) (66.111.2.12) by inbox.vuxu.org with ESMTPUTF8; 6 Jul 2022 15:34:55 -0000 Received: from fantadrom.bsd.lv (localhost [127.0.0.1]) by mandoc.bsd.lv (OpenSMTPD) with ESMTP id 70768144 for ; Wed, 6 Jul 2022 10:34:54 -0500 (EST) Received: from scc-mailout-kit-01.scc.kit.edu (scc-mailout-kit-01.scc.kit.edu [129.13.231.81]) by mandoc.bsd.lv (OpenSMTPD) with ESMTP id e2c55fc8 for ; Wed, 6 Jul 2022 10:34:52 -0500 (EST) Received: from hekate.asta.kit.edu ([2a00:1398:5:f401::77]) by scc-mailout-kit-01.scc.kit.edu with esmtps (TLS1.3:ECDHE_SECP256R1__RSA_PSS_RSAE_SHA256__AES_256_GCM:256) (envelope-from ) id 1o973D-00Gymp-PL; Wed, 06 Jul 2022 17:34:51 +0200 Received: from login-1.asta.kit.edu ([2a00:1398:5:f400::72]) by hekate.asta.kit.edu with esmtp (Exim 4.94.2) (envelope-from ) id 1o973C-006LOK-Q1; Wed, 06 Jul 2022 17:34:51 +0200 Received: from schwarze by login-1.asta.kit.edu with local (Exim 4.92) (envelope-from ) id 1o973D-0000IC-6M; Wed, 06 Jul 2022 17:34:51 +0200 Date: Wed, 6 Jul 2022 17:34:51 +0200 From: Ingo Schwarze To: Anna Cc: tech@mandoc.bsd.lv Subject: Re: patch: avoid multiple

Message-ID: References: X-Mailinglist: mandoc-tech Reply-To: tech@mandoc.bsd.lv MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: Hi Anna, Ingo Schwarze wrote on Wed, Jul 06, 2022 at 04:40:37PM +0200: > Anna wrote on Wed, Jul 06, 2022 at 06:15:47PM +0500: >> On 2022-07-06 14:43, Ingo Schwarze wrote: >>> * Use

for the .Nd in the .Nm section. >>> Or something like that. >> I like that idea. > I'll look into that later. That was simple, see the commit below. Yours, Ingo Log Message: ----------- assign the ARIA role "doc-subtitle" to the .Nd element; discussed with Anna Vyalkova Modified Files: -------------- mandoc: mdoc_html.c Revision Data ------------- Index: mdoc_html.c =================================================================== RCS file: /home/cvs/mandoc/mandoc/mdoc_html.c,v retrieving revision 1.348 retrieving revision 1.349 diff -Lmdoc_html.c -Lmdoc_html.c -u -p -r1.348 -r1.349 --- mdoc_html.c +++ mdoc_html.c @@ -637,7 +637,7 @@ mdoc_nd_pre(MDOC_ARGS) abort(); } print_text(h, "\\(em"); - print_otag(h, TAG_SPAN, "c", "Nd"); + print_otag(h, TAG_SPAN, "cr", "Nd", "doc-subtitle"); return 1; } -- To unsubscribe send an email to tech+unsubscribe@mandoc.bsd.lv