@standardnotes/markdown-basic 1.6.1
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 +4 -0
- package/.editorconfig +9 -0
- package/.eslintignore +5 -0
- package/.eslintrc +49 -0
- package/.jshintignore +1 -0
- package/.jshintrc +10 -0
- package/.travis.yml +7 -0
- package/CHANGELOG.md +94 -0
- package/LICENSE +661 -0
- package/README.md +138 -0
- package/app/components/Home.js +312 -0
- package/app/index.html +7 -0
- package/app/main.js +23 -0
- package/app/stylesheets/main.scss +242 -0
- package/dist/dist.css +3 -0
- package/dist/dist.css.map +1 -0
- package/dist/dist.js +2 -0
- package/dist/dist.js.LICENSE.txt +32 -0
- package/dist/index.html +7 -0
- package/ext.json.sample +10 -0
- package/favicon.ico +0 -0
- package/package.json +64 -0
- package/webpack.config.js +68 -0
package/.babelrc
ADDED
package/.editorconfig
ADDED
package/.eslintignore
ADDED
package/.eslintrc
ADDED
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
{
|
|
2
|
+
"parser": "@babel/eslint-parser",
|
|
3
|
+
"extends": [
|
|
4
|
+
"@standardnotes/eslint-config-extensions",
|
|
5
|
+
"plugin:react/recommended"
|
|
6
|
+
],
|
|
7
|
+
"env": {
|
|
8
|
+
"browser": true,
|
|
9
|
+
"node": true
|
|
10
|
+
},
|
|
11
|
+
"parserOptions": {
|
|
12
|
+
"ecmaVersion": 6,
|
|
13
|
+
"sourceType": "module",
|
|
14
|
+
"ecmaFeatures": {
|
|
15
|
+
"jsx": true
|
|
16
|
+
}
|
|
17
|
+
},
|
|
18
|
+
"rules": {
|
|
19
|
+
"arrow-parens": 0,
|
|
20
|
+
"class-methods-use-this": 0,
|
|
21
|
+
"compat/compat": 2,
|
|
22
|
+
"comma-dangle": 0,
|
|
23
|
+
"consistent-return": 2,
|
|
24
|
+
"func-names": 2,
|
|
25
|
+
"generator-star-spacing": [0],
|
|
26
|
+
"import/no-extraneous-dependencies": ["off"],
|
|
27
|
+
"import/extensions": 0,
|
|
28
|
+
"import/no-unresolved": 2,
|
|
29
|
+
"new-cap": 0,
|
|
30
|
+
"no-implicit-coercion": "error",
|
|
31
|
+
"no-mixed-operators": 0,
|
|
32
|
+
"no-plusplus": 0,
|
|
33
|
+
"no-use-before-define": 0,
|
|
34
|
+
"no-nested-ternary": 0,
|
|
35
|
+
"no-underscore-dangle": 0,
|
|
36
|
+
"no-var": "error",
|
|
37
|
+
"semi": ["error", "always"],
|
|
38
|
+
"promise/param-names": 2,
|
|
39
|
+
"promise/always-return": 2,
|
|
40
|
+
"promise/catch-or-return": 2,
|
|
41
|
+
"promise/no-native": 0,
|
|
42
|
+
"react/jsx-filename-extension": 0
|
|
43
|
+
},
|
|
44
|
+
"plugins": [
|
|
45
|
+
"compat",
|
|
46
|
+
"import",
|
|
47
|
+
"promise"
|
|
48
|
+
]
|
|
49
|
+
}
|
package/.jshintignore
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
node_modules
|
package/.jshintrc
ADDED
package/.travis.yml
ADDED
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,94 @@
|
|
|
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.6.1](https://github.com/standardnotes/plugins/compare/@standardnotes/markdown-basic@1.6.0...@standardnotes/markdown-basic@1.6.1) (2022-11-04)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @standardnotes/markdown-basic
|
|
9
|
+
|
|
10
|
+
# [1.6.0](https://github.com/standardnotes/plugins/compare/@standardnotes/markdown-basic@1.5.0...@standardnotes/markdown-basic@1.6.0) (2022-10-17)
|
|
11
|
+
|
|
12
|
+
### Features
|
|
13
|
+
|
|
14
|
+
* add markdown math ([950eead](https://github.com/standardnotes/plugins/commit/950eeadb32bf39190762477867cb0798bb4f1d55))
|
|
15
|
+
|
|
16
|
+
# 1.5.0 (2022-10-17)
|
|
17
|
+
|
|
18
|
+
### Features
|
|
19
|
+
|
|
20
|
+
* markdown basic editor ([#5](https://github.com/standardnotes/plugins/issues/5)) ([a841914](https://github.com/standardnotes/plugins/commit/a841914cb7e6d102993f7aec83b40741e437837a))
|
|
21
|
+
|
|
22
|
+
## [1.4.7](https://github.com/standardnotes/app/compare/@standardnotes/markdown-basic@1.4.7-alpha.0...@standardnotes/markdown-basic@1.4.7) (2022-06-22)
|
|
23
|
+
|
|
24
|
+
**Note:** Version bump only for package @standardnotes/markdown-basic
|
|
25
|
+
|
|
26
|
+
## [1.4.7-alpha.0](https://github.com/standardnotes/app/compare/@standardnotes/markdown-basic@1.4.6...@standardnotes/markdown-basic@1.4.7-alpha.0) (2022-06-22)
|
|
27
|
+
|
|
28
|
+
### Bug Fixes
|
|
29
|
+
|
|
30
|
+
* components scripts ([#1136](https://github.com/standardnotes/app/issues/1136)) ([e80b4d0](https://github.com/standardnotes/app/commit/e80b4d0ffad495c758b593c30e1c4c754dda9b7e))
|
|
31
|
+
|
|
32
|
+
## [1.4.6](https://github.com/standardnotes/app/compare/@standardnotes/markdown-basic@1.4.6-alpha.0...@standardnotes/markdown-basic@1.4.6) (2022-06-18)
|
|
33
|
+
|
|
34
|
+
**Note:** Version bump only for package @standardnotes/markdown-basic
|
|
35
|
+
|
|
36
|
+
## [1.4.6-alpha.0](https://github.com/standardnotes/app/compare/@standardnotes/markdown-basic@1.4.5...@standardnotes/markdown-basic@1.4.6-alpha.0) (2022-06-18)
|
|
37
|
+
|
|
38
|
+
### Bug Fixes
|
|
39
|
+
|
|
40
|
+
* plus editor icons ([#1120](https://github.com/standardnotes/app/issues/1120)) ([ba65948](https://github.com/standardnotes/app/commit/ba65948364a3fca7bfa5005c56802102c73ccd99))
|
|
41
|
+
|
|
42
|
+
## 1.4.5 (2022-06-16)
|
|
43
|
+
|
|
44
|
+
**Note:** Version bump only for package @standardnotes/markdown-basic
|
|
45
|
+
|
|
46
|
+
## 1.4.4 (2022-06-16)
|
|
47
|
+
|
|
48
|
+
**Note:** Version bump only for package @standardnotes/markdown-basic
|
|
49
|
+
|
|
50
|
+
## [1.4.3](https://github.com/standardnotes/app/compare/@standardnotes/markdown-basic@1.4.3-alpha.3...@standardnotes/markdown-basic@1.4.3) (2022-06-16)
|
|
51
|
+
|
|
52
|
+
**Note:** Version bump only for package @standardnotes/markdown-basic
|
|
53
|
+
|
|
54
|
+
## [1.4.3-alpha.3](https://github.com/standardnotes/app/compare/@standardnotes/markdown-basic@1.4.3-alpha.2...@standardnotes/markdown-basic@1.4.3-alpha.3) (2022-06-16)
|
|
55
|
+
|
|
56
|
+
**Note:** Version bump only for package @standardnotes/markdown-basic
|
|
57
|
+
|
|
58
|
+
## 1.4.3-alpha.2 (2022-06-16)
|
|
59
|
+
|
|
60
|
+
**Note:** Version bump only for package @standardnotes/markdown-basic
|
|
61
|
+
|
|
62
|
+
## 1.4.3-alpha.1 (2022-06-16)
|
|
63
|
+
|
|
64
|
+
**Note:** Version bump only for package @standardnotes/markdown-basic
|
|
65
|
+
|
|
66
|
+
## 1.4.3-alpha.0 (2022-06-15)
|
|
67
|
+
|
|
68
|
+
**Note:** Version bump only for package @standardnotes/markdown-basic
|
|
69
|
+
|
|
70
|
+
<a name="1.2.0"></a>
|
|
71
|
+
# [1.2.0](https://github.com/ruanyf/react-babel-webpack-boilerplate/compare/2804c45...v1.2.0) (2016-04-21)
|
|
72
|
+
|
|
73
|
+
### Features
|
|
74
|
+
|
|
75
|
+
* **update:** update conventional-changelog-cli to the latest version ([6b18d83](https://github.com/ruanyf/react-babel-webpack-boilerplate/commit/6b18d83))
|
|
76
|
+
* **update:** update react and babel to the latest version ([2804c45](https://github.com/ruanyf/react-babel-webpack-boilerplate/commit/2804c45))
|
|
77
|
+
|
|
78
|
+
<a name="1.1.0"></a>
|
|
79
|
+
# 1.1.0 (2016-02-05)
|
|
80
|
+
|
|
81
|
+
## Features
|
|
82
|
+
|
|
83
|
+
* add conventional-changelog to generate CHANGELOG.md c600673
|
|
84
|
+
* use commitizen to produce validated commit-msg ff91264
|
|
85
|
+
* use ghooks instead of pre-commit 555b6d1
|
|
86
|
+
|
|
87
|
+
<a name="1.0.0"></a>
|
|
88
|
+
# 1.0.0 (2015-12-10)
|
|
89
|
+
|
|
90
|
+
## Features
|
|
91
|
+
|
|
92
|
+
* add the support jsx extension into webpack configuration 28cac00
|
|
93
|
+
* add webpack.production.config.js cf7c6c4
|
|
94
|
+
* modifing component's css will reload the page 617225c
|