Skip to content

Commit

Permalink
[CLI] Fix command generate-doc - handle <para> tags (#1565)
Browse files Browse the repository at this point in the history
  • Loading branch information
josefpihrt authored Oct 19, 2024
1 parent ea6971e commit 6153c9e
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/Documentation/Extensions/XmlExtensions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,9 @@ public static void WriteContentTo(this XElement element, DocumentationWriter wri
}
case XmlTag.Para:
{
if (inlineOnly)
break;

writer.WriteLine();
writer.WriteLine();
WriteContentTo(e, writer);
Expand Down

0 comments on commit 6153c9e

Please sign in to comment.