Skip to main content
0 votes
1 answer
56 views

I'm trying to build a custom parser using Markdig to process Markdown into a custom format. It's generally working but when I try to process a table, it is being passed to my ParagraphRender instead ...
glenatron's user avatar
  • 11.4k
Advice
0 votes
2 replies
78 views

I have some markdown text. I use MarkDig to parse the markdown text and obtain a markdown-document-object-model. (markdown-DOM.) From that, I want to obtain an HTML-DOM. As far as I can tell, the only ...
Mike Nakis's user avatar
  • 63.2k
0 votes
1 answer
75 views

Is there a way to tell Markdig where to look for files relative to the root directory? I am reading a README.md file from my project's root directory, defined by a hard coded path in C#. This is then ...
Kenny Cason's user avatar
0 votes
1 answer
307 views

in my app I try to display a markdown string generated by ChatGPT by converting it to html with Markdig. The markdown contains Latex formulas enclosed in \[ and \] and when I convert the string as ...
Qrt's user avatar
  • 639
1 vote
1 answer
65 views

I am using Markdig nuget package right now to read my markup files and convert them to HTML string content = File.ReadAllText(mdFilepath); string? result = Markdown.ToHtml(content, pipeline); But ...
Wasim's user avatar
  • 764
1 vote
1 answer
36 views

I'm trying to make a Markdown renderer for Neo.Markdig.Xaml. The renderer use an XamlObjectWriter to create the graph. In the code below, I'm trying to create a FlowDocument with a single paragraph in ...
Maxence's user avatar
  • 13.4k
0 votes
0 answers
218 views

Here is an excerpt from my Markdown text. This window is divided into 5 regions - [*Naming Fields*](#namingfields), ... Each region is described in more detail below. <a name="namingfields&...
Chuck's user avatar
  • 87