No description
Find a file
2024-02-11 21:53:45 +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 Code cleaning 2023-12-09 21:27:59 +01:00
manifest.json Code cleaning 2023-12-09 21:27:59 +01:00
package-lock.json Code cleaning 2023-12-09 21:27:59 +01:00
package.json Code cleaning 2023-12-09 21:27:59 +01:00
README.md Added roadmap to README 2024-02-11 21:53:45 +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 Code cleaning 2023-12-09 21:27:59 +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

Roadmap

Upcoming changes for this plugin: