{"id":39589662,"url":"https://github.com/rudimuc/obsidian-coder","last_synced_at":"2026-01-18T07:42:33.587Z","repository":{"id":209226449,"uuid":"723518789","full_name":"rudimuc/obsidian-coder","owner":"rudimuc","description":"A plugin for Obsidian to transform texts into different formats. Currently base64 and ROT13","archived":false,"fork":false,"pushed_at":"2026-01-13T17:54:56.000Z","size":54,"stargazers_count":2,"open_issues_count":3,"forks_count":3,"subscribers_count":2,"default_branch":"master","last_synced_at":"2026-01-15T08:14:22.452Z","etag":null,"topics":["atbash","atbash-cipher","base64","base64-encoding","obsidian-md","rot13","rot13-cipher","rot13-decoder"],"latest_commit_sha":null,"homepage":"","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/rudimuc.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2023-11-25T23:14:52.000Z","updated_at":"2026-01-13T17:55:15.000Z","dependencies_parsed_at":"2023-11-26T00:23:16.024Z","dependency_job_id":"fe105f89-fb6a-4194-8a78-584513f5c5cf","html_url":"https://github.com/rudimuc/obsidian-coder","commit_stats":null,"previous_names":["rudimuc/obsidian-coder"],"tags_count":8,"template":false,"template_full_name":"obsidianmd/obsidian-sample-plugin","purl":"pkg:github/rudimuc/obsidian-coder","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rudimuc%2Fobsidian-coder","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rudimuc%2Fobsidian-coder/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rudimuc%2Fobsidian-coder/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rudimuc%2Fobsidian-coder/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/rudimuc","download_url":"https://codeload.github.com/rudimuc/obsidian-coder/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rudimuc%2Fobsidian-coder/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28533172,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-18T00:39:45.795Z","status":"online","status_checked_at":"2026-01-18T02:00:07.578Z","response_time":98,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["atbash","atbash-cipher","base64","base64-encoding","obsidian-md","rot13","rot13-cipher","rot13-decoder"],"created_at":"2026-01-18T07:42:33.048Z","updated_at":"2026-01-18T07:42:33.569Z","avatar_url":"https://github.com/rudimuc.png","language":"TypeScript","readme":"[![Stars](https://img.shields.io/github/stars/rudimuc/obsidian-coder?style=flat)](https://github.com/rudimuc/obsidian-coder/stargazers)\n[![Downloads](https://img.shields.io/github/downloads/rudimuc/obsidian-coder/total.svg)](https://github.com/rudimuc/obsidian-coder/releases)\n[![Platform](https://img.shields.io/badge/platform-macOS%20%7C%20Windows%20%7C%20Linux-blue)](#)\n\n\n# Encoder/Decoder Obsidian Plugin\n\nThis is a plugin for [Obsidian](https://obsidian.md) to encode / decode texts.\n\nCurrently supported algorithms are:\n- atbash\n- Base16\n- Base64\n- Base85\n- ROT13\n\n## Installation\n### From within Obsidian\nFrom Obsidian v0.9.8, you can activate this plugin within Obsidian by doing the following:\n- Open Settings \u003e Third-party plugin\n- Make sure Safe mode is **off**\n- Click Browse community plugins\n- Search for \"Encoder/Decoder Plugin\"\n- Click Install\n- Once installed, close the community plugins window and activate the newly installed plugin\n\n### From Github\n- Clone this repository\n- Follow the instructions of the official [Obsidian Sample Plugin](https://github.com/obsidianmd/obsidian-sample-plugin) to deploy it in your local installation\n\n## Usage\n\nFollowing conversions are available\n\n| Source    | Destination   | Markdown keyword       |\n|-----------|---------------|------------------------|\n| text      | base16        | transform-text-base16  |\n| base16    | text          | transform-base16-text  |\n| text      | base64        | transform-text-base64  |\n| base64    | text          | transform-base64-text  |\n| text      | base85        | transform-text-base85  |\n| base85    | text          | transform-base85-text  |\n| text      | ROT13         | transform-text-rot13   |\n| ROT13     | text          | transform-rot13-text   |\n| text      | atbash        | transform-text-atbash  |\n| atbash    | text          | transform-atbash-text  |\n\n\nType the Markdown keyword to use the specific encoding.\n\nFor example if you like to print out a given text as base64 you have to write:\n\n````markdown\n```transform-text-base64\nthis is a text to encode\n```\n````\n\nThe result will be this:\n\ndGhpcyBpcyBhIHRleHQgdG8gZW5jb2Rl\n\n## Version History\n\n### 1.3.1\n- Added base16 conversion\n\n### 1.3.0\n- Refactorings in main.js for more dynamic bindings\n- Added base85 conversion\n\n### 1.2.1\n- Added atbash conversion\n\n### 1.2.0\n- Added Base64 Decoder\n- Updated dependency versions (vulnarabilities)\n- Base64 lib no longer used and removed\n- Refactoring of project structure\n\n### 1.1.0\n- Added ROT13 conversion\n\n### 1.0.0\n- First version to convert text to base64\n\n\n## Roadmap\n\nUpcoming changes for this plugin:\n\n- Vigenere encoder/decoder\n- Hex encoder/decoder\n- Base32 encoder/decoder\n- Morse encoder/decoder\n- Text to ascii art (based on https://www.npmjs.com/package/figlet)\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frudimuc%2Fobsidian-coder","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Frudimuc%2Fobsidian-coder","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frudimuc%2Fobsidian-coder/lists"}