I am using the Markdown Furigana plugin for some of my note taking, which works very well, creating <ruby> tags from syntax like this {二倍|に|ばい}.
I have written a small unrelated script that inserts some custom dataview data + HTML in my note, called with $= await dv.view('myscript')somewhere in the note.
At some point I tried adding the Furigana syntax as a frontmatter property and adding it to the note alongside my other custom HTML elements, by setting innerHTML = file.frontmatter.furigana. However, this doesn’t work because the property is evaluated as a JS object and prints “[Object object]”. If I put the syntax in quotes it just prints the string literal, without being evaluated by the plugin.
Is there a way to tell Obsidian (and therefore the plugin) to evaluate this property as Markdown?