Emilian
Emilian
Hi, Given table is rendered as below. ```csharp var content = File.ReadAllText("source.md"); var pipeline = new MarkdownPipelineBuilder() .UseAdvancedExtensions() .UseGridTables() .UsePipeTables() .EnableTrackTrivia() .Build(); var document = Markdown.Parse(content, pipeline); using var sw...
When using library it returns 403 forbidden as on image below. Running yt-dlp standalone works correctly and downloads the file. ```csharp var ytdl = new YoutubeDL { OutputFolder = convertedDir...
Using this library 1.0.2 version with EF Core 9.0.3 Inserting 1000 records takes about 16 seconds. I've saved some time with manually passing DbConnection, because without it EF opened connection...