@standardnotes/rich-text 1.8.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.babelrc +3 -0
- package/.eslintignore +5 -0
- package/.eslintrc +15 -0
- package/CHANGELOG.md +92 -0
- package/LICENSE +661 -0
- package/README.md +31 -0
- package/dist/dist.css +3246 -0
- package/dist/dist.css.map +1 -0
- package/dist/dist.js +2 -0
- package/dist/dist.js.map +1 -0
- package/dist/font/summernote.eot +0 -0
- package/dist/font/summernote.ttf +0 -0
- package/dist/font/summernote.woff +0 -0
- package/dist/font/summernote.woff2 +0 -0
- package/dist/index.html +1 -0
- package/dist/vendor.css +3249 -0
- package/dist/vendor.js +2 -0
- package/dist/vendor.js.LICENSE.txt +7 -0
- package/editor.index.ejs +19 -0
- package/ext.json.sample +8 -0
- package/package.json +47 -0
- package/plus_editor_bar.png +0 -0
- package/src/main.js +321 -0
- package/src/main.scss +169 -0
- package/vendor/font/summernote.eot +0 -0
- package/vendor/font/summernote.ttf +0 -0
- package/vendor/font/summernote.woff +0 -0
- package/vendor/font/summernote.woff2 +0 -0
- package/webpack.config.js +66 -0
- package/webpack.dev.js +23 -0
- package/webpack.prod.js +7 -0
package/README.md
ADDED
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
# Plus Editor
|
|
2
|
+
|
|
3
|
+
The Plus Editor is a Standard Notes derived editor that is perfect for crafting any document. Converts note to HTML.
|
|
4
|
+
|
|
5
|
+

|
|
6
|
+
|
|
7
|
+
## Quickstart
|
|
8
|
+
|
|
9
|
+
Use your browser to see the Plus Editor in action.
|
|
10
|
+
|
|
11
|
+
1. Clone this repository
|
|
12
|
+
1. Run `yarn` to install dependencies
|
|
13
|
+
1. Run `yarn start` to start local dev server
|
|
14
|
+
1. Open `http://localhost:8001` in your browser
|
|
15
|
+
|
|
16
|
+
## Contributing
|
|
17
|
+
|
|
18
|
+
Feel free to create a pull request, we welcome your enthusiasm!
|
|
19
|
+
|
|
20
|
+
## Support
|
|
21
|
+
|
|
22
|
+
Please open a new issue and the Standard Notes team will take a look as soon as we can. For more information on editors, refer to the following link:
|
|
23
|
+
|
|
24
|
+
- Standard Notes Help: [What are editors?](https://standardnotes.org/help/77/what-are-editors)
|
|
25
|
+
|
|
26
|
+
We are also reachable on our forum, Slack, Reddit, Twitter, and through email:
|
|
27
|
+
|
|
28
|
+
- Standard Notes Help and Support: [Get Help](https://standardnotes.org/help)
|
|
29
|
+
## License
|
|
30
|
+
|
|
31
|
+
[GNU AGPL v3.0](https://choosealicense.com/licenses/agpl-3.0/)
|