mirror of
https://github.com/xoofx/markdig.git
synced 2026-02-03 21:36:36 +00:00
Error converting markdown with table in Html #608
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 @CodingJarod on GitHub (Jun 28, 2023).
Hi,
I'm trying to convert a text with pipe table in it to html but I'm unable to match the expected result.
The document correctly identifies the table but when I execute the ToHtml it got converted in a series o
tag.
What am I missing?
Thanks
@MihaZupan commented on GitHub (Jun 28, 2023):
You need to pass the pipeline to
ToHtmlas well. For performance reasons, you should also try to cache the pipeline object.@CodingJarod commented on GitHub (Jun 28, 2023):
Thank you!