I have a CSS file which has the following comment structure:
/*
Copyright .......
*/
/*TITLE: Red Scheme */
/* body */
body
{
<css statements>
}
and so on.
If I reformat this file (using SHIFT-CTRL-F), the comments are “inlined”:
/*
Copyright .......
*/ /*TITLE: Red Scheme */ /* body */
body {
<css statements>
}
I think the formatter should honour blank lines between comments.