@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/.eslintignore
ADDED
package/.eslintrc
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
{
|
|
2
|
+
"env": {
|
|
3
|
+
"browser": true,
|
|
4
|
+
"amd": true,
|
|
5
|
+
"node": true,
|
|
6
|
+
"es6": true
|
|
7
|
+
},
|
|
8
|
+
"extends": [
|
|
9
|
+
"@standardnotes/eslint-config-extensions"
|
|
10
|
+
],
|
|
11
|
+
"parserOptions": {
|
|
12
|
+
"ecmaVersion": 11
|
|
13
|
+
},
|
|
14
|
+
"globals": {
|
|
15
|
+
"EasyMDE": true,
|
|
16
|
+
"ComponentRelay": true,
|
|
17
|
+
"Stylekit": true,
|
|
18
|
+
"DOMPurify": true
|
|
19
|
+
}
|
|
20
|
+
}
|
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,100 @@
|
|
|
1
|
+
# Change Log
|
|
2
|
+
|
|
3
|
+
All notable changes to this project will be documented in this file.
|
|
4
|
+
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
|
+
|
|
6
|
+
## [1.7.6](https://github.com/standardnotes/plugins/compare/@standardnotes/markdown-hybrid@1.7.5...@standardnotes/markdown-hybrid@1.7.6) (2022-11-04)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @standardnotes/markdown-hybrid
|
|
9
|
+
|
|
10
|
+
## [1.7.5](https://github.com/standardnotes/plugins/compare/@standardnotes/markdown-hybrid@1.7.4...@standardnotes/markdown-hybrid@1.7.5) (2022-11-04)
|
|
11
|
+
|
|
12
|
+
**Note:** Version bump only for package @standardnotes/markdown-hybrid
|
|
13
|
+
|
|
14
|
+
## [1.7.4](https://github.com/standardnotes/plugins/compare/@standardnotes/markdown-hybrid@1.7.3...@standardnotes/markdown-hybrid@1.7.4) (2022-11-04)
|
|
15
|
+
|
|
16
|
+
**Note:** Version bump only for package @standardnotes/markdown-hybrid
|
|
17
|
+
|
|
18
|
+
## [1.7.3](https://github.com/standardnotes/plugins/compare/@standardnotes/markdown-hybrid@1.7.2...@standardnotes/markdown-hybrid@1.7.3) (2022-11-04)
|
|
19
|
+
|
|
20
|
+
**Note:** Version bump only for package @standardnotes/markdown-hybrid
|
|
21
|
+
|
|
22
|
+
## [1.7.2](https://github.com/standardnotes/plugins/compare/@standardnotes/markdown-hybrid@1.7.1...@standardnotes/markdown-hybrid@1.7.2) (2022-11-04)
|
|
23
|
+
|
|
24
|
+
**Note:** Version bump only for package @standardnotes/markdown-hybrid
|
|
25
|
+
|
|
26
|
+
## [1.7.1](https://github.com/standardnotes/plugins/compare/@standardnotes/markdown-hybrid@1.7.0...@standardnotes/markdown-hybrid@1.7.1) (2022-11-04)
|
|
27
|
+
|
|
28
|
+
**Note:** Version bump only for package @standardnotes/markdown-hybrid
|
|
29
|
+
|
|
30
|
+
# 1.7.0 (2022-11-04)
|
|
31
|
+
|
|
32
|
+
### Features
|
|
33
|
+
|
|
34
|
+
* add core plugins ([b607787](https://github.com/standardnotes/plugins/commit/b60778762306f5647cb715102eab23083b266718))
|
|
35
|
+
|
|
36
|
+
## [1.6.2](https://github.com/standardnotes/app/compare/@standardnotes/markdown-hybrid@1.6.1...@standardnotes/markdown-hybrid@1.6.2) (2022-07-13)
|
|
37
|
+
|
|
38
|
+
**Note:** Version bump only for package @standardnotes/markdown-hybrid
|
|
39
|
+
|
|
40
|
+
## [1.6.1](https://github.com/standardnotes/app/compare/@standardnotes/markdown-hybrid@1.6.0...@standardnotes/markdown-hybrid@1.6.1) (2022-06-29)
|
|
41
|
+
|
|
42
|
+
**Note:** Version bump only for package @standardnotes/markdown-hybrid
|
|
43
|
+
|
|
44
|
+
# [1.6.0](https://github.com/standardnotes/app/compare/@standardnotes/markdown-hybrid@1.5.5...@standardnotes/markdown-hybrid@1.6.0) (2022-06-28)
|
|
45
|
+
|
|
46
|
+
### Bug Fixes
|
|
47
|
+
|
|
48
|
+
* advanced markdown deprecation handling ([bb43134](https://github.com/standardnotes/app/commit/bb43134e94768f534b201533c96d0a8c166b29a0))
|
|
49
|
+
|
|
50
|
+
### Features
|
|
51
|
+
|
|
52
|
+
* deprecated editors ([#1166](https://github.com/standardnotes/app/issues/1166)) ([60ca415](https://github.com/standardnotes/app/commit/60ca4150446f9a14bb6a31416686c6d07a7d0cd9))
|
|
53
|
+
|
|
54
|
+
## [1.5.5](https://github.com/standardnotes/app/compare/@standardnotes/markdown-hybrid@1.5.5-alpha.0...@standardnotes/markdown-hybrid@1.5.5) (2022-06-22)
|
|
55
|
+
|
|
56
|
+
**Note:** Version bump only for package @standardnotes/markdown-hybrid
|
|
57
|
+
|
|
58
|
+
## [1.5.5-alpha.0](https://github.com/standardnotes/app/compare/@standardnotes/markdown-hybrid@1.5.4...@standardnotes/markdown-hybrid@1.5.5-alpha.0) (2022-06-22)
|
|
59
|
+
|
|
60
|
+
### Bug Fixes
|
|
61
|
+
|
|
62
|
+
* components scripts ([#1136](https://github.com/standardnotes/app/issues/1136)) ([e80b4d0](https://github.com/standardnotes/app/commit/e80b4d0ffad495c758b593c30e1c4c754dda9b7e))
|
|
63
|
+
|
|
64
|
+
## [1.5.4](https://github.com/standardnotes/app/compare/@standardnotes/markdown-hybrid@1.5.4-alpha.0...@standardnotes/markdown-hybrid@1.5.4) (2022-06-18)
|
|
65
|
+
|
|
66
|
+
**Note:** Version bump only for package @standardnotes/markdown-hybrid
|
|
67
|
+
|
|
68
|
+
## [1.5.4-alpha.0](https://github.com/standardnotes/app/compare/@standardnotes/markdown-hybrid@1.5.3...@standardnotes/markdown-hybrid@1.5.4-alpha.0) (2022-06-18)
|
|
69
|
+
|
|
70
|
+
### Bug Fixes
|
|
71
|
+
|
|
72
|
+
* plus editor icons ([#1120](https://github.com/standardnotes/app/issues/1120)) ([ba65948](https://github.com/standardnotes/app/commit/ba65948364a3fca7bfa5005c56802102c73ccd99))
|
|
73
|
+
|
|
74
|
+
## 1.5.3 (2022-06-16)
|
|
75
|
+
|
|
76
|
+
**Note:** Version bump only for package @standardnotes/markdown-hybrid
|
|
77
|
+
|
|
78
|
+
## 1.5.2 (2022-06-16)
|
|
79
|
+
|
|
80
|
+
**Note:** Version bump only for package @standardnotes/markdown-hybrid
|
|
81
|
+
|
|
82
|
+
## [1.5.1](https://github.com/standardnotes/app/compare/@standardnotes/markdown-hybrid@1.5.1-alpha.3...@standardnotes/markdown-hybrid@1.5.1) (2022-06-16)
|
|
83
|
+
|
|
84
|
+
**Note:** Version bump only for package @standardnotes/markdown-hybrid
|
|
85
|
+
|
|
86
|
+
## [1.5.1-alpha.3](https://github.com/standardnotes/app/compare/@standardnotes/markdown-hybrid@1.5.1-alpha.2...@standardnotes/markdown-hybrid@1.5.1-alpha.3) (2022-06-16)
|
|
87
|
+
|
|
88
|
+
**Note:** Version bump only for package @standardnotes/markdown-hybrid
|
|
89
|
+
|
|
90
|
+
## 1.5.1-alpha.2 (2022-06-16)
|
|
91
|
+
|
|
92
|
+
**Note:** Version bump only for package @standardnotes/markdown-hybrid
|
|
93
|
+
|
|
94
|
+
## 1.5.1-alpha.1 (2022-06-16)
|
|
95
|
+
|
|
96
|
+
**Note:** Version bump only for package @standardnotes/markdown-hybrid
|
|
97
|
+
|
|
98
|
+
## 1.5.1-alpha.0 (2022-06-15)
|
|
99
|
+
|
|
100
|
+
**Note:** Version bump only for package @standardnotes/markdown-hybrid
|