cleanly adding line breaks to XML comments in visual studio -


is there way add break xml documentation without using br tag? in below example want text in steps node cleanly displayed in output. ex, line breaks present in output

///<summary> unit test </summary> ///<steps> /// 1. /// 2. else /// 3. save ///</steps> 

if use br tag tag displayed if open xml file in ie. @ least want avoid using sandcastle have minimal display needs.

try

///<para>1. something</para> 

and

///<para/>1.  

might work, 1-liners anyway.

now if want list…

///<list> ///<item>do something</item> ///<item/>experiment see if works ///</list> 

here nice, concise article on xml comment tags .


Comments

Popular posts from this blog

java - activate/deactivate sonar maven plugin by profile? -

python - TypeError: can only concatenate tuple (not "float") to tuple -

java - What is the difference between String. and String.this. ? -