In my XML, I define the XML code like the following:
///
/// ....
///
///
/// This is the example 1
///
/// ...
///
///
/// ...
///
/// This is the example 2
///
/// ...
///
///
/// ...
///
I just want to show the example code's intro text in the correct order as in the XML file but the generated help file always shows:
This is the example 1
This is the example 2
[code of example1]
[code of example2]
is there a way I can have them as follows:
This is the example 1
[code of example1]
This is the example 2
[code of example2]