File tree 3 files changed +10
-8
lines changed
3 files changed +10
-8
lines changed Original file line number Diff line number Diff line change 2
2
3
3
This is a plugin for [ Obsidian] ( https://obsidian.md ) to encode / decode texts.
4
4
5
- The first version supports only a text to base64 encoding.
6
-
7
- The library used for the encoding is [ base64-js] ( https://github.com/beatgammit/base64-js ) .
8
-
5
+ Currently supported algorithms are:
6
+ - Base64
7
+ - ROT13
9
8
10
9
## Installation
11
10
### From within Obsidian
@@ -28,6 +27,7 @@ Following conversions are available
28
27
| Source | Destination | Markdown keyword |
29
28
| -----------| ---------------| ------------------------|
30
29
| text | base64 | transform-text-base64 |
30
+ | base64 | text | transform-base64-text |
31
31
| text | ROT13 | transform-text-rot13 |
32
32
| ROT13 | text | transform-rot13-text |
33
33
@@ -48,6 +48,9 @@ dGhpcyBpcyBhIHRleHQgdG8gZW5jb2Rl
48
48
49
49
## Version History
50
50
51
+ ### 1.2.0
52
+ - Added Base64 Decoder
53
+
51
54
### 1.1.0
52
55
- Added ROT13 conversion
53
56
@@ -59,11 +62,9 @@ dGhpcyBpcyBhIHRleHQgdG8gZW5jb2Rl
59
62
60
63
Upcoming changes for this plugin:
61
64
62
- - Base64 to text
63
65
- Text to Vigenere
64
66
- Vigenere to text
65
67
- ROT13 to text
66
68
- Text to hex
67
69
- Hex to text
68
70
- Text to ascii art (based on https://www.npmjs.com/package/figlet )
69
- -
Original file line number Diff line number Diff line change 1
1
{
2
2
"id" : " coder" ,
3
3
"name" : " Encoder/Decoder" ,
4
- "version" : " 1.1 .0" ,
4
+ "version" : " 1.2 .0" ,
5
5
"minAppVersion" : " 0.15.0" ,
6
- "description" : " Converts text into other formats (base64, ROT13)" ,
6
+ "description" : " Converts texts into other formats (base64, ROT13) and vice versa " ,
7
7
"author" : " Rudi Häusler" ,
8
8
"isDesktopOnly" : false
9
9
}
Original file line number Diff line number Diff line change 4
4
"1.0.2" : " 0.15.0" ,
5
5
"1.0.3" : " 0.15.0" ,
6
6
"1.1.0" : " 0.15.0"
7
+ "1.2.0" : " 0.15.0"
7
8
}
You can’t perform that action at this time.
0 commit comments