7 questions
0
votes
1
answer
56
views
Why is Markdig parsing my PipelineTables as Paragraphs?
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 ...
Advice
0
votes
2
replies
78
views
How to obtain HTML DOM from markdown?
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 ...
0
votes
1
answer
75
views
Setting the root directory using Markdig in C#
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 ...
0
votes
1
answer
307
views
Using Markdig to convert markdown with LaTeX formulas fails
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 ...
1
vote
1
answer
65
views
Markup file slug in .NET
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 ...
1
vote
1
answer
36
views
NullReferenceException when calling XamlObjectWriter.WriteStartMember
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 ...
0
votes
0
answers
218
views
I'm having issues linking to a header in the same document with CommonMark, Markdig, MAUI, and Visual Studio 2022?
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&...