From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from forward2m.mail.yandex.net (forward2m.mail.yandex.net [37.140.138.2]) by krisdoz.my.domain (8.14.5/8.14.5) with ESMTP id sAAHeMHm007160 for ; Mon, 10 Nov 2014 12:40:23 -0500 (EST) Received: from smtp4m.mail.yandex.net (smtp4m.mail.yandex.net [77.88.61.131]) by forward2m.mail.yandex.net (Yandex) with ESMTP id B42145CA15E1 for ; Mon, 10 Nov 2014 20:40:15 +0300 (MSK) Received: from smtp4m.mail.yandex.net (localhost [127.0.0.1]) by smtp4m.mail.yandex.net (Yandex) with ESMTP id 88FCFBE0339 for ; Mon, 10 Nov 2014 20:40:15 +0300 (MSK) Received: from unknown (unknown [82.113.121.124]) by smtp4m.mail.yandex.net (nwsmtp/Yandex) with ESMTPSA id MQlBgfFeWA-eEm8wXJK; Mon, 10 Nov 2014 20:40:14 +0300 (using TLSv1.2 with cipher AES256-GCM-SHA384 (256/256 bits)) (Client certificate not present) X-Yandex-Uniq: 73520f3c-4f10-447f-9bd0-2a75a6de7cfe DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=yandex.com; s=mail; t=1415641215; bh=ZbEjbX7OBmrpBynKFG60f0ctlLKoowsU/sBg/1jmgy4=; h=Date:From:To:Subject:Message-ID:Mail-Followup-To:User-Agent: MIME-Version:Content-Type:Content-Transfer-Encoding; b=YHjFjQghMPM3M5BmZc0XI1l5Ec+gC+5KpgpJaa8LotMyr08wTAjs/QiDQtEH1X8j2 TJMG8S5XURYSduKI57fkJoKqFotMq6lXMHFKJSKejghJ1Ob5miqdHMXWHrCe97U775 MQM4KUdQjuY5tPn41TNoNKOwq7VjxdOwlR/7e2pw= Authentication-Results: smtp4m.mail.yandex.net; dkim=pass header.i=@yandex.com Date: Mon, 10 Nov 2014 18:40:10 +0100 From: Steffen Nurpmeso To: tech@mdocml.bsd.lv Subject: Nested list spacing issue Message-ID: <20141110174010.Dcr6rYrG%sdaoden@yandex.com> Mail-Followup-To: tech@mdocml.bsd.lv User-Agent: s-nail v14.7.8-70-g9310369 X-Mailinglist: mdocml-tech Reply-To: tech@mdocml.bsd.lv MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Hello, I'm sure it's known but i can't find a TODO entry in cvs(1) HEAD: suppose this .Sh TABLE OF CONTENTS .Bl -inset .It Sx "DESCRIPTION" .Bl -tag -offset indent .It Sx "Creating a table of contents" ... .El ... .El In groff v1.22.3 you will see TABLE OF CONTENTS DESCRIPTION Creating a table of contents but in mandoc v1.13.1 you get TABLE OF CONTENTS DESCRIPTION Creating a table of contents which i think lacks an initial vertical space when the .Bl is opened? A different approach could be found below, but i don't know if it's always like that (and am too lazy to evaluate). --steffen diff --git a/mandoc.1 b/mandoc.1 index 19c90f6..838ea51 100644 --- a/mandoc.1 +++ b/mandoc.1 @@ -1572,6 +1572,7 @@ macro in .Fl T Ns Cm ascii does not assert a prior vertical break, just as it doesn't with .Sq \&Sh . +Likewise the first item of a nested list won't assert a vertical break. .It The .Sq \&na -- To unsubscribe send an email to tech+unsubscribe@mdocml.bsd.lv