using System;
using Markdig;
public class Program
{
public static void Main()
// text in line prior to table
var input = @"
Filled Row Before Table
| simple table |
| ------------ |
| goes here |
";
var pipeline = new MarkdownPipelineBuilder()
.UseAdvancedExtensions()
.Build();
var output = Markdown.ToHtml(input, pipeline);
Console.WriteLine(output);
}