markdig
markdig copied to clipboard
Question about normalization / transformation
Hi!
I have a text like this:
Visit a [link](https://link)
Some multiline
Code
Is it possible to normalize/transform it to something like this?
Visit a <https://link|link>
```
Some multiline
code
```
I browsed a bit through the usages of pipeline and extensions, but couldn't find anything that's catching my eye.
Thanks in advance!
Is it possible to normalize/transform it to something like this?
Not out of the box. You can always try to modify the AST and write it back.
Seems like #706