red-gate / XmlDoc2CmdletDoc

Create cmdlet XML help files from XML doc comments
Other
63 stars 24 forks source link

Adding a new line in Summary is ignored #53

Closed mayho33 closed 4 years ago

mayho33 commented 4 years ago

Hello,

i adding some examples in my c# class summary like this example:

/// <summary>
/// <example>
/// <para type="description">any descrition:</para>
/// <code>Get-Some -ExampleParam "Example" </code>
/// </example>
///</summary>

the output show this:

---------- EXAMPLE 1 -------------
any descrition:Get-Some -ExampleParam "Example"

but i want the output show like this:

---------- EXAMPLE 1 -------------
any descrition:
Get-Some -ExampleParam "Example"

maybe it's my fault, but how to do this? i tryed to add (and many other): /// <code type="description">Get-Some -ExampleParam "Example" </code> /// <para type="description"></para> /// <br />

same result :-(

mayho33 commented 4 years ago

i found a solution here: https://github.com/red-gate/XmlDoc2CmdletDoc/issues/1