Is there any way to add a break to XML documentation without using a <br> tag? In the below example, I want the text in the steps node to be cleanly displayed in the output. Example, line breaks are present in the output:
///<summary> this is a unit test </summary>
///<steps>
/// 1. do something
/// 2. do something else
/// 3. save that something
///</steps>
If I use a <br> tag the tag will be displayed if I open the XML file in IE. At least for now I want to avoid using something like Sandcastle as I have very minimal display needs.