mirror of
https://github.com/xoofx/markdig.git
synced 2026-02-03 21:36:36 +00:00
Insert custom html after paragraph #522
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 @hey-red on GitHub (Mar 26, 2022).
There is way to insert html container after paragraph?
@xoofx commented on GitHub (Mar 27, 2022):
Something like that?
@hey-red commented on GitHub (Mar 27, 2022):
@xoofx
Thanks for reply.
But how I can create Block element from string like
"<div>test</div>"or construct Block object in some another way?@xoofx commented on GitHub (Mar 27, 2022):
Parse that with Markdig and see the resulting tree, you would have to replicate it manually.
@hey-red commented on GitHub (Mar 27, 2022):
It's works! Thanks for help.