#1101359 manual page is malformed

Package:
libnotify-bin
Source:
libnotify-bin
Description:
sends desktop notifications to a notification daemon (Utilities)
Submitter:
VA
Date:
2025-05-28 05:23:02 UTC
Severity:
normal
#1101359#5
Date:
2025-03-26 13:32:39 UTC
From:
To:
When running "man notify-send", here's how it looks like (the beginning
at least):

```
NOTIFY-SEND(1)   User Commands   NOTIFY-SEND(1)

   .SH "NAME" notify-send - a program to send desktop notifications

   .SH "SYNOPSIS"

     .HP 288u
```

#1101359#10
Date:
2025-05-28 05:21:16 UTC
From:
To:
I don't have sufficient experience to know why the xslt man page generator is
indenting the output, but this is what is causing the dot directives to be
interpreted literally (e.g. .SH).

A simple work-around would be to post-filter the output:

  zcat /usr/share/man/man1/notify-send.1.gz |
      sed 's/^ *//; /^\.HP .*notify/d' |
      man -l -

seems sufficiently readable.