clangd icon indicating copy to clipboard operation
clangd copied to clipboard

Preserve white spaces and new lines from the comments in hover request

Open Fildo7525 opened this issue 8 months ago • 2 comments

This is mostly visible when there is a markdown table in the comments. The whole table is passed in one line.

/**
 * | a      | b    |
 * |‐-------|-------|
 * | 1      | 2    |
 */

Will be sent as

| a | b | |‐-------|-------| | 1 | 2 |

It would be really helpful for the parsing of the data and better for the visualisation.

Fildo7525 avatar May 29 '24 20:05 Fildo7525