markdig icon indicating copy to clipboard operation
markdig copied to clipboard

Question about normalization / transformation

Open matkoch opened this issue 1 year ago • 2 comments

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!

matkoch avatar Sep 30 '23 13:09 matkoch

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.

xoofx avatar Nov 25 '23 09:11 xoofx

Seems like #706

Tripletri avatar Jan 30 '24 05:01 Tripletri