@standardnotes/markdown-hybrid 1.7.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 +5 -0
- package/.eslintignore +5 -0
- package/.eslintrc +20 -0
- package/CHANGELOG.md +100 -0
- package/LICENSE +661 -0
- package/README.md +44 -0
- package/dist/dist.css +2341 -0
- package/dist/dist.css.map +1 -0
- package/dist/dist.js +3 -0
- package/dist/dist.js.LICENSE.txt +1 -0
- package/dist/dist.js.map +1 -0
- package/dist/fonts/fontawesome-webfont.eot +0 -0
- package/dist/fonts/fontawesome-webfont.svg +2671 -0
- package/dist/fonts/fontawesome-webfont.ttf +0 -0
- package/dist/fonts/fontawesome-webfont.woff +0 -0
- package/dist/fonts/fontawesome-webfont.woff2 +0 -0
- package/dist/index.html +1 -0
- package/dist/lib/component-relay.js +1 -0
- package/dist/lib/component-relay.js.LICENSE.txt +1 -0
- package/dist/stylekit.css +3347 -0
- package/dist/vendor/easymd/easymd.js +2 -0
- package/dist/vendor/easymd/easymd.js.LICENSE.txt +6 -0
- package/dist/vendor/easymd/easymde.css +7 -0
- package/dist/vendor/highlightjs/highlightjs.js +2 -0
- package/dist/vendor/highlightjs/highlightjs.js.LICENSE.txt +1 -0
- package/editor.index.ejs +18 -0
- package/ext.json.sample +8 -0
- package/linter.tsconfig.json +1 -0
- package/markdown_pro_editor_bar.png +0 -0
- package/package.json +49 -0
- package/src/main.js +371 -0
- package/src/main.scss +339 -0
- package/webpack.config.js +73 -0
- package/webpack.dev.js +23 -0
- package/webpack.prod.js +7 -0
package/README.md
ADDED
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
# Markdown Pro Editor
|
|
2
|
+
|
|
3
|
+
The Markdown Pro Editor (formerly Advanced Markdown Editor) is a Standard Notes derived editor that offers full support for Markdown editing.
|
|
4
|
+
|
|
5
|
+
This editor is based on [EasyMDE](https://github.com/Ionaru/easy-markdown-editor), which is a fork of the now unmaintained [SimpleMDE](https://github.com/sparksuite/simplemde-markdown-editor).
|
|
6
|
+
|
|
7
|
+

|
|
8
|
+
|
|
9
|
+
## Quickstart
|
|
10
|
+
|
|
11
|
+
Use your browser to see the Markdown Pro Editor in action.
|
|
12
|
+
|
|
13
|
+
1. Clone the [advanced-markdown-editor](https://github.com/standardnotes/advanced-markdown-editor) from GitHub.
|
|
14
|
+
2.
|
|
15
|
+
3. Run `npm install` to install any required dependencies.
|
|
16
|
+
4. Run `grunt` to build the project in the dist folder.
|
|
17
|
+
5. Open `index.html` in your browser where the editor will be running.
|
|
18
|
+
|
|
19
|
+
## Local Installation
|
|
20
|
+
|
|
21
|
+
See the editor in the desktop app and make changes to the code.
|
|
22
|
+
|
|
23
|
+
1. Clone the [advanced-markdown-editor](https://github.com/standardnotes/advanced-markdown-editor) from GitHub.
|
|
24
|
+
|
|
25
|
+
2. Run `npm install` to install any required dependencies.
|
|
26
|
+
3. Ensure that either the Standard Notes desktop app is available for use or the web app is accessible. Use both locally or with an Extended account (or the extension will not load).
|
|
27
|
+
4. Follow the instructions [here](https://docs.standardnotes.org/extensions/local-setup) to setup the extension locally.
|
|
28
|
+
5. Begin development! Upon making any changes to the code, run `grunt` to build the files to the `dist` folder.
|
|
29
|
+
|
|
30
|
+
## Support
|
|
31
|
+
|
|
32
|
+
For issues related to core functionality, we suggest creating an issue on the [core repo](https://github.com/Ionaru/easy-markdown-editor) instead. For issues specifically related to how this editor integrates with Standard Notes, please feel free to create an issue in this repo.
|
|
33
|
+
|
|
34
|
+
Refer to the following link for more details on editors:
|
|
35
|
+
|
|
36
|
+
- Standard Notes Help: [What are editors?](https://standardnotes.org/help/77/what-are-editors)
|
|
37
|
+
|
|
38
|
+
We are also reachable on our forum, Slack, Reddit, Twitter, and through email:
|
|
39
|
+
|
|
40
|
+
- Standard Notes Help and Support: [Get Help](https://standardnotes.org/help)
|
|
41
|
+
|
|
42
|
+
## License
|
|
43
|
+
|
|
44
|
+
[GNU AGPL v3.0](https://choosealicense.com/licenses/agpl-3.0/)
|