refactor: clean up chat and split up embed handling

This commit is contained in:
Andy Burke 2025-09-16 12:25:11 -07:00
parent 03751c6d00
commit 7e4ab72fe6
14 changed files with 352 additions and 274 deletions

3
public/js/embeds/link.js Normal file
View file

@ -0,0 +1,3 @@
function embed_link(link_info) {
return `<a href="${link_info.url}">${link_info.url}</a>`;
}