No description
Find a file
2023-11-26 01:15:40 +01:00
.editorconfig Initial commit 2023-11-26 00:14:55 +01:00
.eslintignore Initial commit 2023-11-26 00:14:55 +01:00
.eslintrc Initial commit 2023-11-26 00:14:55 +01:00
.gitignore Initial commit 2023-11-26 00:14:55 +01:00
.npmrc Initial commit 2023-11-26 00:14:55 +01:00
esbuild.config.mjs Initial commit 2023-11-26 00:14:55 +01:00
LICENSE Create LICENSE 2023-11-26 01:12:38 +01:00
main.ts Commented Decoder for base64 2023-11-26 00:28:23 +01:00
manifest.json changed plugin id 2023-11-26 01:15:40 +01:00
package-lock.json Changed Plugin name and ID 2023-11-26 01:01:53 +01:00
package.json changed plugin id 2023-11-26 01:15:40 +01:00
README.md Update README.md 2023-11-26 00:45:17 +01:00
styles.css Initial commit 2023-11-26 00:14:55 +01:00
tsconfig.json Initial commit 2023-11-26 00:14:55 +01:00
version-bump.mjs Initial commit 2023-11-26 00:14:55 +01:00
versions.json changed plugin id 2023-11-26 01:15:40 +01:00

Encoder/Decoder Obsidian Plugin

This is a plugin for Obsidian to encode / decode texts.

The first version supports only a text to base64 encoding.

The library used for the encoding is base64-js.

Installation

From within Obsidian

From Obsidian v0.9.8, you can activate this plugin within Obsidian by doing the following:

  • Open Settings > Third-party plugin
  • Make sure Safe mode is off
  • Click Browse community plugins
  • Search for "Encoder/Decoder Plugin"
  • Click Install
  • Once installed, close the community plugins window and activate the newly installed plugin

From Github

  • Clone this repository
  • Follow the instructions of the official Obsidian Sample Plugin to deploy it in your local installation

Usage

Type the transform-text-base64 keyword to use the Plugin.

```transform-text-base64
this is a text to encode
```

The result will be this:

dGhpcyBpcyBhIHRleHQgdG8gZW5jb2Rl

Version History

1.0.0

  • First version to convert text to base64