Commit 30a0f87
committed
Output when brief description ends with multiple spaces
When we have multiple spaces at the end of a brief description like in:
```
#define BRLAPI_PACKET_RESUMEDRIVER0 'R' /**< Resume driver */
```
and settings:
```
JAVADOC_AUTOBRIEF = YES
MARKDOWN_SUPPORT = YES
GENERATE_MAN = YES
```
This leads in e.g. the HTML output to some extra white space for the brief description and in the MAN output to:
```
#define BRLAPI_PACKET_RESUMEDRIVER0 'R'
Resume driver
"
```
The problem is the empty spaces at the end of the brief description that are converted ny the `MARKDOWN_SUPPORT` to `\ilinbr<br>`, the brief description is now stripped of leading and trailing whitespce and also the later is now stripped.1 parent a3de740 commit 30a0f87
2 files changed
Lines changed: 2 additions & 0 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
4771 | 4771 | | |
4772 | 4772 | | |
4773 | 4773 | | |
| 4774 | + | |
4774 | 4775 | | |
4775 | 4776 | | |
4776 | 4777 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
5389 | 5389 | | |
5390 | 5390 | | |
5391 | 5391 | | |
| 5392 | + | |
5392 | 5393 | | |
5393 | 5394 | | |
5394 | 5395 | | |
| |||
0 commit comments