Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/S73ph4n/joplin_make_all_links
Plugin for Joplin, the note-taking software. Makes all the possible links in a note.
https://github.com/S73ph4n/joplin_make_all_links
Last synced: 7 days ago
JSON representation
Plugin for Joplin, the note-taking software. Makes all the possible links in a note.
- Host: GitHub
- URL: https://github.com/S73ph4n/joplin_make_all_links
- Owner: S73ph4n
- Created: 2020-11-22T10:22:37.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2023-12-25T13:35:57.000Z (11 months ago)
- Last Synced: 2024-08-02T02:02:32.371Z (4 months ago)
- Language: TypeScript
- Size: 742 KB
- Stars: 11
- Watchers: 1
- Forks: 1
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- awesome-joplin - Make all possible links
README
# Make all possible links
This plugin searches the current note for mentions of other notes, then makes the corresponding links.
Just click the new icon in the toolbar.This plugin is experimental and comes with absolutely no warranty of any kind. Use at your own risk.
### Before
![](screenshot_before.png)
### After clicking the icon
![](screenshot_after.png)## Joplin Plugin
The main two files you will want to look at are:
- `/src/index.ts`, which contains the entry point for the plugin source code.
- `/src/manifest.json`, which is the plugin manifest. It contains information such as the plugin a name, version, etc.The plugin is built using webpack, which create the compiled code in `/dist`. The project is setup to use TypeScript, although you can change the configuration to use plain JavaScript.
## Building the plugin
To build the plugin, simply run `npm run dist`.