diff --git a/README.md b/README.md index 2c0a379..1efdf23 100644 --- a/README.md +++ b/README.md @@ -16,6 +16,7 @@ This repository contains the following plugins: | [🏠](https://github.com/joplin/plugin-abc-sheet-music) | [⬇️](https://github.com/joplin/plugins/raw/master/plugins/org.joplinapp.plugins.AbcSheetMusic/plugin.jpl) | ABC Sheet Music Plugin | 1.0.1 | Turns ABC text notation into sheet music | Laurent Cozic | | [🏠](https://github.com/maxnegro/joplin-plugin-admonition) | [⬇️](https://github.com/joplin/plugins/raw/master/plugins/org.joplinapp.plugins.admonition/plugin.jpl) | Admonition markdown extension | 1.0.3 | Enables markdownIt admonition plugin, which enables formatting notes | Massimiliano Masserelli | | [🏠](https://github.com/S73ph4n) | [⬇️](https://github.com/joplin/plugins/raw/master/plugins/com.s73ph4n.autolinker/plugin.jpl) | Autolinker | 1.0.0 | Adds an icon to the toolbar. When clicked, it creates a link to the note with a title matching the selected text. | S73ph4n | +| [🏠](https://github.com/S73ph4n) | [⬇️](https://github.com/joplin/plugins/raw/master/plugins/com.s73ph4n.automate_notes/plugin.jpl) | Automate Notes | 1.0.0 | Finds blocks of javascript in the current note (blocks have to start with "```javascript" and end with "```") and runs it as a function. | S73ph4n | | [🏠](https://discourse.joplinapp.org/t/insert-referencing-notes-backlinks-plugin/13632) | [⬇️](https://github.com/joplin/plugins/raw/master/plugins/joplin.plugin.ambrt.backlinksToNote/plugin.jpl) | Automatic Backlinks to note | 3.0.3 | Creates backlinks to opened note, also in automatic way | ambrt,cyingfan | | - | [⬇️](https://github.com/joplin/plugins/raw/master/plugins/com.xUser5000.bibtex/plugin.jpl) | BibTeX | 0.5.0 | Use locally stored BibTeX files to integrate citation into Joplin | Abdallah Ahmed | | [🏠](https://github.com/shantanugoel/joplin-plugin-cm-linenumbers) | [⬇️](https://github.com/joplin/plugins/raw/master/plugins/com.shantanugoel.JoplinCMLineNumbersPlugin/plugin.jpl) | CodeMirror Line Numbers | 2.0.0 | Enables line numbers for CodeMirror editor | Shantanu Goel | diff --git a/manifests.json b/manifests.json index f3c9727..78a1e10 100644 --- a/manifests.json +++ b/manifests.json @@ -1003,5 +1003,20 @@ "_publish_hash": "sha256:61bd1c8576dade799cc055c17780717e2407bd1325e29aac8063758d48b78173", "_publish_commit": "main:a1069fc73c476d75c0cdac7d8b85ce2e023ce6f3", "_npm_package_name": "joplin-plugin-complete-link" + }, + "com.s73ph4n.automate_notes": { + "manifest_version": 1, + "id": "com.s73ph4n.automate_notes", + "app_min_version": "2.0", + "version": "1.0.0", + "name": "Automate Notes", + "description": "Finds blocks of javascript in the current note (blocks have to start with "```javascript" and end with "```") and runs it as a function. ", + "author": "S73ph4n", + "homepage_url": "https://github.com/S73ph4n", + "repository_url": "https://github.com/S73ph4n/joplin_automate_notes", + "keywords": [], + "_publish_hash": "sha256:9721e59cc64be47bc93b138bf29a5619804b6a9483a43fa62f57d001853b7b17", + "_publish_commit": "main:46501ceef10325c902f036cac16f0ec58ec15019", + "_npm_package_name": "joplin-plugin-automate-notes" } } \ No newline at end of file diff --git a/plugins/com.s73ph4n.automate_notes/manifest.json b/plugins/com.s73ph4n.automate_notes/manifest.json new file mode 100644 index 0000000..2657776 --- /dev/null +++ b/plugins/com.s73ph4n.automate_notes/manifest.json @@ -0,0 +1,15 @@ +{ + "manifest_version": 1, + "id": "com.s73ph4n.automate_notes", + "app_min_version": "2.0", + "version": "1.0.0", + "name": "Automate Notes", + "description": "Finds blocks of javascript in the current note (blocks have to start with "```javascript" and end with "```") and runs it as a function. ", + "author": "S73ph4n", + "homepage_url": "https://github.com/S73ph4n", + "repository_url": "https://github.com/S73ph4n/joplin_automate_notes", + "keywords": [], + "_publish_hash": "sha256:9721e59cc64be47bc93b138bf29a5619804b6a9483a43fa62f57d001853b7b17", + "_publish_commit": "main:46501ceef10325c902f036cac16f0ec58ec15019", + "_npm_package_name": "joplin-plugin-automate-notes" +} \ No newline at end of file diff --git a/plugins/com.s73ph4n.automate_notes/plugin.jpl b/plugins/com.s73ph4n.automate_notes/plugin.jpl new file mode 100644 index 0000000..db83c77 Binary files /dev/null and b/plugins/com.s73ph4n.automate_notes/plugin.jpl differ