-
-
Notifications
You must be signed in to change notification settings - Fork 31
Open
Labels
Description
I wanted to ask if it is possible to display XML documentation using new lines as it is written.
I have looked through settings, but I couldn't find anything related.
For example, this XML documentation is displayed as one line:
/// <summary>
/// A unified notification event that fires in two scenarios:
/// 1. When the <see cref="__DataContext" /> is swapped (Property Name will be null).
/// 2. When a specific property inside the current ViewModel changes (Property Name will be provided).
/// </summary>
The only way I know how to break lines is using <br/> or <para/>, but I'd argue that having the possibility to display new lines automatically would be a lot better than littering the documentation with a bunch of <br/>'s
/// <summary>
/// A unified notification event that fires in two scenarios:<para/>
/// 1. When the <see cref="__DataContext" /> is swapped (Property Name will be null).<br/>
/// 2. When a specific property inside the current ViewModel changes (Property Name will be provided).
/// </summary>
