Skip to content

Commit 6c247d4

Browse files
committed
Fix plugin ID to comply with requirements
1 parent ba2d77d commit 6c247d4

5 files changed

+10
-7
lines changed

README.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,8 @@ Thankfully:
4141

4242
However, it is effortful to manually create and embed these notes. Acknowledging that similar use cases may benefit from automation, and wanting to try writing an Obsidian plugin for the first time, I wrote this one.
4343

44+
![](images/plotly-example.png)
45+
4446
## Acknowledgments
4547

4648
Parts of this plugin are directly derived (see source comments) from parts of the following plugins:
@@ -54,7 +56,7 @@ Additionally, I took inspiration from [obsidian-custom-attachment-location](http
5456

5557
- [ ] Allow individual rules to be toggled on and off
5658
- [ ] Control precedence/order of rules
57-
- [ ] Allow rules to be either 1) regexp-based, or 2) associated with hotkeys
59+
- [ ] Allow rules to be either 1) regexp-based, or 2) associated with keyboard shortcuts
5860
- [ ] Toggle CSS styling (e.g. clean-embeds)
5961

6062
### Mobile support

manifest.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
2-
"id": "obsidian-paste-as-embed",
2+
"id": "paste-as-embed",
33
"name": "Paste as Embed",
4-
"version": "0.1.1",
4+
"version": "0.1.2",
55
"minAppVersion": "0.15.0",
66
"description": "Paste text into a separate note, and embed the note.",
77
"author": "Matt Laporte",

package-lock.json

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "obsidian-paste-as-embed",
3-
"version": "0.1.1",
3+
"version": "0.1.2",
44
"description": "Paste text into a separate note, and embed the note.",
55
"main": "main.js",
66
"scripts": {

versions.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
{
22
"0.0.1": "0.15.0",
33
"0.1.0": "0.15.0",
4-
"0.1.1": "0.15.0"
4+
"0.1.1": "0.15.0",
5+
"0.1.2": "0.15.0"
56
}

0 commit comments

Comments
 (0)