I am not able to show clickable link in datatable

I wrote this code based on answers I saw. But this is not working as expected. It is just showing LINK text on every row.

kma_df[‘LINK’] = “[‘LINK’]”+ “(”+kma_df[‘LINK’]+“)”
dash_table.DataTable(
id=‘kma_output’,
style_data={‘whiteSpace’: ‘normal’,‘height’: ‘auto’},
data=kma_df.to_dict(‘records’),
columns=[{‘id’: x, ‘name’: x, ‘presentation’: ‘markdown’} if x == ‘LINK’ else {‘id’: x, ‘name’: x} for x in kma_df.columns],
fill_width =True,
editable=True)