remove font from inkify

This commit is contained in:
Chris W 2023-12-08 17:47:38 -07:00
parent 064da49acd
commit 71735349b8
1 changed files with 1 additions and 2 deletions

View File

@ -32,7 +32,6 @@ const imgUrl = ref<string | undefined>(undefined)
const windowTitle = "Inkify" const windowTitle = "Inkify"
const pad_horiz = 20; const pad_horiz = 20;
const pad_vert = 20; const pad_vert = 20;
const font = "Monaspace Neon=32"
const themes = [ const themes = [
"1337", "1337",
@ -60,7 +59,7 @@ const themes = [
const inkifyRequest = () => { const inkifyRequest = () => {
const encodedCode = encodeURIComponent(code.value) const encodedCode = encodeURIComponent(code.value)
const endpoint = `https://inkify.0x45.st/generate?code=${encodedCode}&theme=${theme.value}&window_title=${windowTitle}&pad_horiz=${pad_horiz}&pad_vert=${pad_vert}&font=${font}` const endpoint = `https://inkify.0x45.st/generate?code=${encodedCode}&theme=${theme.value}&window_title=${windowTitle}&pad_horiz=${pad_horiz}&pad_vert=${pad_vert}`
imgUrl.value = endpoint imgUrl.value = endpoint
} }
</script> </script>