Can we output a link in the plugin's summary text

Question from our netlify-plugin-cypress - we are using utils.status.show to output plugin’s summary during the build. If the user is recording test results to the Cypress Dashboard we include the URL to the run. But the output is plain text like shown below:

Is there a way to output a link, maybe some Markdown syntax that is sanitized but still allows [text](URL) to be converted into a proper anchor?

Hi @bahmutov,

Not all Markdown features are supported, but links are :slight_smile:
You can use [text](URL) with utils.status.show().

Hahaha, I should have tried it first! Thanks for the quick reply, added the links, works great

1 Like

I just added a feature request (Markdown in utils.status.show() in build plugin deploy summary) and also documented in that post which tags currently work.