When I use <para></para>
tag in documentation (in form of <para />
as well) in Visual Studio 2015 Community Edition, I'm getting an extra blank line displayed in IntelliSense tooltip (the one which appears when typing in member name).
I've tried many variants, including but not limited to listed in the following example:
public interface IFooBar {
///<summary>foo<para>bar</para><para>baz</para></summary>
void Foo();
///<summary>foo
///<para>bar</para>
///<para>baz</para>
///</summary>
void Bar();
///<summary>foo<para />bar<para />baz</summary>
void Baz();
///<summary>foo<para />
///bar
///<para />baz
///</summary>
void Qux();
}
but still it appears, and it is infuriating. Please, if anyone knows how to get rid of it, help me.
The question is NOT about getting new lines in XML comments, which I know how to obtain. It is about getting rid of extra new lines while using <para />
tag.
After all, it seems that there's no way to get rid of extra blank line rendered by Visual Studio when using any form of <para />
tag.
Furthermore, there seems to be no way of adding a simple line break. No, HTML tags don't work. No, &10;
and &13;
are not working either.
So, it basically boils down to this: either no line breaks at all, or extra line breaks.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With