markman

markdown man page converter
git clone git://edryd.org/markman
Log | Files | Refs | README | LICENSE

commit 8d85e9dbbdbbbeab078827088afde4696a413ed7
parent 2853c0261fae5b64cadd47b7b7ac341c0c197bc9
Author: Ed van Bruggen <ed@edryd.org>
Date:   Sat,  5 Jul 2025 16:11:10 -0400

Intent bulleted lists for level 4 sections

Diffstat:
Mmarkman.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/markman.c b/markman.c @@ -351,7 +351,7 @@ disp_block(Block b, Block prev, int lvl) printf(".RS 4\n.EX\n%s\n.EE\n.RE\n", b->v.s); break; case ULIST: - printf(".IP \\(bu"); + printf(".IP %s\\(bu", lvl >= 4 ? "\t" : " "); if (prev && prev->t != ULIST) puts(lvl < 4 ? " 2" : " 8"); else