This commit is contained in:
bluepilledgreat 2024-01-29 20:13:42 +00:00
parent 8d0aa5249c
commit dd70d729f1

View File

@ -32,7 +32,7 @@ namespace Bloxstrap.UI.Elements.Controls
/// <returns>Span, skip</returns>
private static (Span, int) GetInlineUntilEndTagDetected(Markdig.Syntax.Inlines.Inline? inline, string tagName)
{
string endTag = $"<{tagName}/>"; // TODO: better way of doing this
string endTag = $"</{tagName}>"; // TODO: better way of doing this
var span = new Span();