Order list with links inside

I am trying to use shortcode T (i18n) to set the string with order list tags on my page.

In the en.yaml I have a mark:

Then in partial forlder in index.html I used it like this

{{ T “guides_integration_steps” | markdownify }}

On page it rendered with no markdown link

1. Test string [test link](https://discourse.gohugo.io/top/weekly)

I found the solution to fix this by setting any symbol (for example space) before the first ol tag but it’s not the best way for me. I think that markdown couldn’t find the link because it’s wrapper in list tags.
On blackfriday library I don’t have this problem, it is only on goldmark (the unsafe mode set on true).
Is it any other ways to fix this?