mirror of
https://github.com/xoofx/markdig.git
synced 2026-02-03 21:36:36 +00:00
Issue while trying to convert markdown to Html ( with pipelines) #276
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @Matteo7497 on GitHub (Mar 7, 2019).
Hello,
I'm trying to convert some markdown to html using this code:
After that i have to update links in the Markup from relative to absolute paths.
So, after that i'm trying to convert the MarkdownObject to string using this code:
so what?
Pipe Tables are parsed as paragraphs.
Some example:
this markdown table is parsed as:
However if i use this code everthing works (but i can't update links in an easy way)
string html = Markdown.ToHtml(markdown, markdownPipeline);How can i convert this markdown?
Thank you so much.