Agent Tests for API, MAUI, and Slop Features

This commit is contained in:
2026-06-03 19:08:35 -04:00
parent 46150d3a69
commit 0feac0f0a0
142 changed files with 4156 additions and 1462 deletions
@@ -1,23 +1,25 @@
@if (StyleType.Equals("Plain"))
@inject IGlossaryService glossaryService
@if (StyleType.Equals("Plain"))
{
@if (Entity!.Info().Description != "")
{
<div>
<b>Description:</b> @((MarkupString)Entity.Info().Description)
<b>Description:</b> @((MarkupString)glossaryService.LinkifyText(Entity.Info().Description))
</div>
}
@if (Entity.Info().Notes != "")
{
<div>
<b>Notes:</b> @((MarkupString)Entity.Info().Notes)
<b>Notes:</b> @((MarkupString)glossaryService.LinkifyText(Entity.Info().Notes))
</div>
}
@if (Entity.Info().FlavorText != "")
{
<div>
<i>@((MarkupString)Entity.Info().FlavorText)</i>
<i>@((MarkupString)glossaryService.LinkifyText(Entity.Info().FlavorText))</i>
</div>
}
@@ -59,14 +61,14 @@ else
@if (Entity!.Info().Description != "")
{
<div>
<b>Description:</b> @((MarkupString)Entity.Info().Description)
<b>Description:</b> @((MarkupString)glossaryService.LinkifyText(Entity.Info().Description))
</div>
}
@if (Entity.Info().Notes != "")
{
<div>
<b>Notes:</b> @((MarkupString)Entity.Info().Notes)
<b>Notes:</b> @((MarkupString)glossaryService.LinkifyText(Entity.Info().Notes))
</div>
}