Agent Tests for API, MAUI, and Slop Features
This commit is contained in:
@@ -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>
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user