As of v4.4.0 dcc.Markdown does not render dccLinks properly when they use a children prop. The link is rendered using the href instead.
With this code:
dcc.Markdown(
'<dccLink href="/page-2" children="Go to page 2" />',
dangerously_allow_html=True,
),
Prior to v4.4.0:

On v4.4.0:
This is a result of upgrading react-jsx-parser (1.21.0 → 2.4.1) which changed its behaviour under the hood.
As of v4.4.0
dcc.Markdowndoes not render dccLinks properly when they use achildrenprop. The link is rendered using thehrefinstead.With this code:
Prior to v4.4.0:

On v4.4.0:
This is a result of upgrading
react-jsx-parser(1.21.0 → 2.4.1) which changed its behaviour under the hood.