code cleanup

This commit is contained in:
2025-07-30 09:03:47 +02:00
parent a77efb4e41
commit 631a527a5d
18 changed files with 257 additions and 184 deletions

View File

@@ -40,8 +40,8 @@
const url = api('markdown/render');
const resp = await fetch(url,{
credentials: 'include',
method: 'POST',
body: editValue.source
method : 'POST',
body : editValue.source
});
editValue.rendered = await resp.text();
}