Out-of-line formatting /* */ markup tags adds extra spaces at the beginning of the line instead of using the Default indent for /* */ blocks.
The following
/* Zero One Two */
is formatted as
/* Zero One Two */
assuming a 2 space default setting for /* */ blocks.
The expected result is
/* Zero One Two */
Steps:
Anonymous
The /* ... */ markup is supposed to preserve relative indentation and add whatever your setting is for /* ... */. So I believe it works as it should, but your expectation is wrong. It sounds like you're looking for /# ... #/ instead.
I concur. I've no idea what I was thinking 2 years ago.