@standardnotes/markdown-minimal 1.2.1 → 1.4.0
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/CHANGELOG.md +14 -0
- package/LICENSE.md +0 -0
- package/package.json +6 -4
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,20 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
# [1.4.0](https://github.com/standardnotes/plugins/compare/@standardnotes/markdown-minimal@1.3.0...@standardnotes/markdown-minimal@1.4.0) (2023-11-18)
|
|
7
|
+
|
|
8
|
+
### Features
|
|
9
|
+
|
|
10
|
+
* add classic editors ([96a412a](https://github.com/standardnotes/plugins/commit/96a412a9725f689cbd5ca95f7feb5ba19938dd9a))
|
|
11
|
+
|
|
12
|
+
# 1.3.0 (2022-11-04)
|
|
13
|
+
|
|
14
|
+
### Features
|
|
15
|
+
|
|
16
|
+
* add advanced checklist editor ([#3](https://github.com/standardnotes/plugins/issues/3)) ([71ae54d](https://github.com/standardnotes/plugins/commit/71ae54de2b1563c39a885d1ae6d3b30c0ba72eae))
|
|
17
|
+
* individual package entries ([8405d41](https://github.com/standardnotes/plugins/commit/8405d418f5110dd54310d180ffe7c319e61300bd))
|
|
18
|
+
* initial commit ([cf09e92](https://github.com/standardnotes/plugins/commit/cf09e925f915349a64c16905140a2b7b50d1b69b))
|
|
19
|
+
|
|
6
20
|
## [1.2.1](https://github.com/standardnotes/plugins/compare/@sncommunity/markdown-minimal@1.2.0...@sncommunity/markdown-minimal@1.2.1) (2022-11-04)
|
|
7
21
|
|
|
8
22
|
**Note:** Version bump only for package @sncommunity/markdown-minimal
|
package/LICENSE.md
ADDED
|
File without changes
|
package/package.json
CHANGED
|
@@ -3,8 +3,8 @@
|
|
|
3
3
|
"publishConfig": {
|
|
4
4
|
"access": "public"
|
|
5
5
|
},
|
|
6
|
-
"version": "1.
|
|
7
|
-
"description": "A minimal Markdown editor
|
|
6
|
+
"version": "1.4.0",
|
|
7
|
+
"description": "A minimal Markdown editor with live rendering and in-text search via Ctrl/Cmd + F",
|
|
8
8
|
"author": "Standard Notes Retired",
|
|
9
9
|
"main": "dist/dist.js",
|
|
10
10
|
"sn": {
|
|
@@ -14,7 +14,8 @@
|
|
|
14
14
|
"area": "editor-editor",
|
|
15
15
|
"spellcheckControl": true,
|
|
16
16
|
"note_type": "markdown",
|
|
17
|
-
"file_type": "
|
|
17
|
+
"file_type": "md",
|
|
18
|
+
"showInGallery": true
|
|
18
19
|
},
|
|
19
20
|
"scripts": {
|
|
20
21
|
"build": "grunt",
|
|
@@ -37,5 +38,6 @@
|
|
|
37
38
|
"sass": "*",
|
|
38
39
|
"sn-codemirror-search": "1.0.0",
|
|
39
40
|
"sn-stylekit": "2.1.0"
|
|
40
|
-
}
|
|
41
|
+
},
|
|
42
|
+
"gitHead": "acc3dcf053c4bb32d11f63f4596315988661e7a5"
|
|
41
43
|
}
|