1.1.2 • Published 3 years ago

joplin-plugin-pastespecial v1.1.2

Weekly downloads
-
License
MIT
Repository
-
Last release
3 years ago

Paste Special Plugin - Joplin

This plugin is for pasting formatted text and provide sub-menu options inside it to paste from user clipboard. The sub-menu contains options for file formats like Paste Excel or CSV as Markdown table and Pasting HTML as Markdown. This project was built under GSoC'21.

Usage

Paste CSV as Table

Screen-Recording-2021-07-05-at-3

Paste HTML as Markdown

Screen-Recording-2021-07-18-at-7

Building the plugin

The plugin is built using Webpack, which creates the compiled code in /dist. A JPL archive will also be created at the root, which can be used to distribute the plugin.

To build the plugin, simply run npm run dist.

The project is setup to use TypeScript, although you can change the configuration to use plain JavaScript.

Testing the plugin

To test the plugin, simply run npm test.

This project is setup to use Jest, for testing purposes.

Updating the plugin framework

To update the plugin framework, run npm run update.

In general this command tries to do the right thing - in particular it's going to merge the changes in package.json and .gitignore instead of overwriting. It will also leave "/src" as well as README.md untouched.

The file that may cause problem is "webpack.config.js" because it's going to be overwritten. For that reason, if you want to change it, consider creating a separate JavaScript file and include it in webpack.config.js. That way, when you update, you only have to restore the line that include your file.

Development Dependencies