Open
Description
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>