#1100756 git-extras: examples stripped from manpages

#1100756#5
Date:
2025-03-18 10:19:01 UTC
From:
To:
Dear Maintainer,

seems like re-buliding the manpages from the markdown files strips some
lines, notably the commands from the examples.

e.g. man/git-changelog.md contains
```markdown
  * Specifying a file for output:

    $ git changelog ChangeLog.md

  * And if an existing Changelog exists, replace its contents entirely:

    $ git changelog --prune-old
```

and accordingly man/git-changelog.1 contains:
```troff
.TP
Specifying a file for output:
.
.IP
$ git changelog ChangeLog\.md
.
.TP
And if an existing Changelog exists, replace its contents entirely:
.
.IP
$ git changelog \-\-prune\-old
.
```


however, the manpage in the binary package only contains:
```troff
.TP
Specifying a file for output:

.TP
And if an existing Changelog exists, replace its contents entirely:

```

which renders as:
```
       Specifying a file for output:

       And if an existing Changelog exists, replace its contents entirely:

```

this is of course not very useful.

mfadrt
IOhannes