Markdown in plotly go.Table() to embed an image?

Hi,

I have managed to get Markdown to work in a plotly dash app like so,

app.layout = Div([
    DataTable(
        columns=[
            dict(name='id', id='id', type='text'),
            dict(name='link', id='link', type='text', presentation='markdown'),
        ],
        data=df.to_dict('records')
    ),
])

This has also worked for embeding an image. Is there any way to get Markdown or an alternative way to embed an image in a basic plotly go.Table()? Thanks