Skip to content

Commit

Permalink
class library output
Browse files Browse the repository at this point in the history
  • Loading branch information
DavidVollmers committed May 7, 2024
1 parent 03ed7fd commit f7704e8
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions src/Doki.Output.ClassLibrary/ClassLibraryOutput.cs
Original file line number Diff line number Diff line change
Expand Up @@ -133,15 +133,21 @@ private static void BuildTypeDocumentation(TypeDocumentation typeDocumentation,
{{i}} [
""");

//TODO Examples
foreach (var xmlDocumentation in typeDocumentation.Examples)
{
BuildXmlDocumentation(xmlDocumentation, content, indent + 2);
}

content.AppendLine($"""
{i} ],
{i} Remarks =
{i} [
""");

//TODO Remarks
foreach (var xmlDocumentation in typeDocumentation.Remarks)
{
BuildXmlDocumentation(xmlDocumentation, content, indent + 2);
}

content.AppendLine($"""
{i} ],
Expand Down

0 comments on commit f7704e8

Please sign in to comment.