Skip to content

Commit 76f056c

Browse files
committed
Fix linter warning
1 parent ec3c10c commit 76f056c

File tree

1 file changed

+1
-6
lines changed

1 file changed

+1
-6
lines changed

src/Elastic.Markdown/Myst/Directives/Stepper/StepViewModel.cs

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,5 @@ public class StepViewModel : DirectiveViewModel
1515
/// <summary>
1616
/// Renders the title with substitutions applied
1717
/// </summary>
18-
public HtmlString RenderTitle()
19-
{
20-
// For now, just return the title as-is since substitutions are already applied in FinalizeAndValidate
21-
// In the future, this could be extended to handle full markdown processing
22-
return new HtmlString(Title);
23-
}
18+
public HtmlString RenderTitle() => new HtmlString(Title);
2419
}

0 commit comments

Comments
 (0)