Compare commits

...

6 Commits

Author SHA1 Message Date
9dd05e2c2d
Update README.md 2024-04-10 21:06:14 +05:30
f00a020e4a
Update README 2024-04-10 21:03:59 +05:30
b817ad02d9
Update README 2024-04-10 20:57:24 +05:30
1c08b27e2e
Update minAppVersion 2024-04-10 20:34:22 +05:30
e22d203f7f
Updating funding url 2024-04-10 20:30:24 +05:30
98d096535c
Remove console.log 2024-04-10 20:29:33 +05:30
3 changed files with 7 additions and 7 deletions

View File

@ -4,9 +4,11 @@
# Swarnam # Swarnam
A no-frills web playground plugin for Obsidian. A no-frills web playground plugin for Obsidian. Inspired by [MDN playgrounds](https://developer.mozilla.org/en-US/docs/Web/CSS/grid).
<sup><i>Swarnam (സ്വർണം)</i> means <i>gold</i> in Malayalam.<br/></sup>
<sup>(icon credit: [3dicons](https://3dicons.co))</sup>
<small>(icon credit: [3dicons](https://3dicons.co))</small>
</div> </div>
## Demo ## Demo

View File

@ -16,9 +16,7 @@ function bytesToBase64(bytes: Uint8Array) {
} }
function asBase64(text: string) { function asBase64(text: string) {
console.log({ text });
const b64 = bytesToBase64(new TextEncoder().encode(text)); const b64 = bytesToBase64(new TextEncoder().encode(text));
console.log(console.log(new TextDecoder().decode(base64ToBytes(b64))));
return b64; return b64;
} }

View File

@ -2,10 +2,10 @@
"id": "swarnam", "id": "swarnam",
"name": "Swarnam", "name": "Swarnam",
"version": "1.0.1", "version": "1.0.1",
"minAppVersion": "0.15.0", "minAppVersion": "1.5.12",
"description": "A no-frills web playground plugin for Obsidian.", "description": "A no-frills web playground plugin for Obsidian.",
"author": "runofthemillgeek", "author": "runofthemillgeek",
"authorUrl": "https://dg.sangeeth.dev", "authorUrl": "https://dg.sangeeth.dev",
"fundingUrl": "https://dg.sangeeth.dev", "fundingUrl": "https://www.buymeacoffee.com/runofthemillgeek",
"isDesktopOnly": true "isDesktopOnly": true
} }