# Pastebin EWiiEjZ3 generally speaking I was suggesting something similarly low level in terms of browser stuff to start with -- again, kind of off the wall but could we, for example, give a property on which you could pin the ssml (or json equiv) and worry about serilization later... so like, if you wanted to make those existing systems using data-ssml work you could do something as simple as, for example ``` document.querySelectorAll('[data-ssml]').forEach((el) => try { el.ssml = JSON.parse(el.data.ssml) } catch(e) { ... } ) ```