Add emoji support & render markdown in embeds

This commit is contained in:
TomatoCake 2024-07-13 09:32:34 +02:00
parent 97c264d888
commit 2162b2c1e3
4 changed files with 45 additions and 10 deletions

View file

@ -83,7 +83,7 @@ class PermissionToggle{
div.append(this.generateCheckbox());
const p=document.createElement("p");
p.innerText=this.rolejson.description;
p.textContent=this.rolejson.description;
div.appendChild(p);
return div;
}