Remove / Change taxonomy on button click, assuming the GRAV user is logged in.
I have tried:
---
taxonomy:
tag:
- mountain
<code>
<script>
function removeTg() {
var ret = "mountain".replace('mountain','');
}
</script>
</code>
---
<button onclick="removeTg()">Remove tag</button>
Any idea how to make scripts execute and change .md file content / strings, in a section wrapped by?
---
as non visible .md taxonomy page content.
---