Embedding HTML audio tag in Bases table view

What I’m trying to do

I am using a base to show an index of recorded sessions of a retreat. The base is sourcing from a folder of notes, each of which has a property, recording_url, that is a link to a .m4a file.

I would like for there to be a column in the base that embeds an <audio /> tag, where the src property is pulled from the frontmatter.

Things I have tried

At the moment, I have a formula property that contains the following:

'`<audio controls src="' + recording_url  + '" />`'

This does properly construct a string that would embed properly, but the HTML does not render, only the string. Is it possible to do this, yet, with the plugin in its current state?

2 Likes

This topic was automatically closed 90 days after the last reply. New replies are no longer allowed.