codemaid
codemaid copied to clipboard
Cleaning: Whitespace between adjacent XML tags is removed on code clean up
Environment
- Visual Studio version: 2019 16.11.7
- CodeMaid version: 12
- Code language: C#
Description
Whitespace between adjacent XML tags is removed on code clean up.
Steps to recreate
- Write a documentation such as:
/// <summary> This summary contains adjacent XML tags <see cref=""/> <see cref=""/>. </summary>
- Apply code clean up.
Current behavior
Whitespace between adjacent XML tags is removed on code clean up, decreasing the readability of the documentation:
/// <summary> This summary contains adjacent XML tags <see cref=""/><see cref=""/>. </summary>
Expected behavior
Whitespace between adjacent XML tags is preserved on code clean up:
/// <summary> This summary contains adjacent XML tags <see cref=""/> <see cref=""/>. </summary>
Thanks for reporting the issue. @w5l are you available to take a look?
Please try to fix this as soon as possible as it causes a lot of noise in code reviews.
Any updates?
Hope you can take a look at this, still a relevant issue 😄
Same problem for me.