Skip to content

Commit

Permalink
Replace &ZeroWidthSpace with space to workaround issues with Typesens…
Browse files Browse the repository at this point in the history
…e scraper
  • Loading branch information
mythz committed Jul 10, 2023
1 parent 39bd7b2 commit 7321c8e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion MyApp/MarkdownPagesBase.cs
Original file line number Diff line number Diff line change
Expand Up @@ -298,7 +298,7 @@ protected override void Write(HtmlRenderer renderer, HeadingBlock obj)
{
renderer.Write("<a class=\"header-anchor\" href=\"javascript:;\" onclick=\"location.hash='#");
renderer.Write(attrs.Id);
renderer.Write("'\" aria-label=\"Permalink\">&ZeroWidthSpace;</a>");
renderer.Write("'\" aria-label=\"Permalink\"> </a>");
}

if (renderer.EnableHtmlForBlock)
Expand Down

0 comments on commit 7321c8e

Please sign in to comment.