Skip to content

Commit

Permalink
fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
mythz committed Oct 31, 2024
1 parent 5ee3f4b commit c105b3b
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions MyApp/MarkdownPagesBase.cs
Original file line number Diff line number Diff line change
Expand Up @@ -338,6 +338,10 @@ public AutoLinkHeadingRenderer(string relativeHtmlPath)
this._relativeHtmlPath = relativeHtmlPath;
}

public AutoLinkHeadingRenderer()
{
}

public event Action<HeadingBlock>? OnHeading;

protected override void Write(HtmlRenderer renderer, HeadingBlock obj)
Expand Down Expand Up @@ -379,6 +383,13 @@ protected override void Write(HtmlRenderer renderer, HeadingBlock obj)

public class AutoLinkHeadingsExtension : IMarkdownExtension
{
private string relativeHtmlPath;

public AutoLinkHeadingsExtension(string relativeHtmlPath)
{
this.relativeHtmlPath = relativeHtmlPath;
}

public void Setup(MarkdownPipelineBuilder pipeline)
{
}
Expand Down

0 comments on commit c105b3b

Please sign in to comment.