https://github.com/rudimuc/obsidian-coder
A plugin for Obsidian to transform texts into different formats. Currently base64 and ROT13
https://github.com/rudimuc/obsidian-coder
atbash atbash-cipher base64 base64-encoding obsidian-md rot13 rot13-cipher rot13-decoder
Last synced: 25 days ago
JSON representation
A plugin for Obsidian to transform texts into different formats. Currently base64 and ROT13
- Host: GitHub
- URL: https://github.com/rudimuc/obsidian-coder
- Owner: rudimuc
- License: mit
- Created: 2023-11-25T23:14:52.000Z (about 2 years ago)
- Default Branch: master
- Last Pushed: 2026-01-13T17:54:56.000Z (30 days ago)
- Last Synced: 2026-01-15T08:14:22.452Z (28 days ago)
- Topics: atbash, atbash-cipher, base64, base64-encoding, obsidian-md, rot13, rot13-cipher, rot13-decoder
- Language: TypeScript
- Homepage:
- Size: 52.7 KB
- Stars: 2
- Watchers: 2
- Forks: 3
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
[](https://github.com/rudimuc/obsidian-coder/stargazers)
[](https://github.com/rudimuc/obsidian-coder/releases)
[](#)
# Encoder/Decoder Obsidian Plugin
This is a plugin for [Obsidian](https://obsidian.md) to encode / decode texts.
Currently supported algorithms are:
- atbash
- Base16
- Base64
- Base85
- ROT13
## 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](https://github.com/obsidianmd/obsidian-sample-plugin) to deploy it in your local installation
## Usage
Following conversions are available
| Source | Destination | Markdown keyword |
|-----------|---------------|------------------------|
| text | base16 | transform-text-base16 |
| base16 | text | transform-base16-text |
| text | base64 | transform-text-base64 |
| base64 | text | transform-base64-text |
| text | base85 | transform-text-base85 |
| base85 | text | transform-base85-text |
| text | ROT13 | transform-text-rot13 |
| ROT13 | text | transform-rot13-text |
| text | atbash | transform-text-atbash |
| atbash | text | transform-atbash-text |
Type the Markdown keyword to use the specific encoding.
For example if you like to print out a given text as base64 you have to write:
````markdown
```transform-text-base64
this is a text to encode
```
````
The result will be this:
dGhpcyBpcyBhIHRleHQgdG8gZW5jb2Rl
## Version History
### 1.3.1
- Added base16 conversion
### 1.3.0
- Refactorings in main.js for more dynamic bindings
- Added base85 conversion
### 1.2.1
- Added atbash conversion
### 1.2.0
- Added Base64 Decoder
- Updated dependency versions (vulnarabilities)
- Base64 lib no longer used and removed
- Refactoring of project structure
### 1.1.0
- Added ROT13 conversion
### 1.0.0
- First version to convert text to base64
## Roadmap
Upcoming changes for this plugin:
- Vigenere encoder/decoder
- Hex encoder/decoder
- Base32 encoder/decoder
- Morse encoder/decoder
- Text to ascii art (based on https://www.npmjs.com/package/figlet)