Skip to content

Commit

Permalink
Merge pull request #12 from zack4485/patch-13
Browse files Browse the repository at this point in the history
Enabling anchor links
  • Loading branch information
mythz authored Oct 31, 2024
2 parents 6e8afbd + c267ba5 commit b810fa8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions MyApp/Markdown.Videos.cs
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ public void LoadFrom(string fromDirectory)
var dirs = VirtualFiles.GetDirectory(fromDirectory).GetDirectories().ToList();
log.LogInformation("Found {Count} video directories", dirs.Count);

var pipeline = CreatePipeline();
var pipeline = CreatePipeline(string.Empty);

Check failure on line 26 in MyApp/Markdown.Videos.cs

View workflow job for this annotation

GitHub Actions / build

No overload for method 'CreatePipeline' takes 1 arguments

Check failure on line 26 in MyApp/Markdown.Videos.cs

View workflow job for this annotation

GitHub Actions / build

No overload for method 'CreatePipeline' takes 1 arguments

foreach (var dir in dirs)
{
Expand Down Expand Up @@ -58,4 +58,4 @@ public override List<MarkdownFileBase> GetAll()
}
return to;
}
}
}

0 comments on commit b810fa8

Please sign in to comment.