Hey: Just migrated from other app, and I am struggling to do something that perhaphs is already done / way easier than how I think it is.
The idea would be to have some html5/js code within a note that allows me to run and update the note itself, such as:
<button onclick="changeNote()">CLICKME</button>
<script>
function changeNote() {
noteAPI.replace("a", "b")
}
</script>
Does this exist already or I just need to go through creating a plugin for my personal functions?
Things I have tried
I have checked all the posts mentioning javascript and Obsidian and could not find a speficif answer other than custom plugins.