@md-plugins/md-plugin-frontmatter 0.1.0-beta.2 → 0.1.0-beta.20
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/README.md +9 -0
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -17,6 +17,8 @@ Install the plugin via your preferred package manager:
|
|
|
17
17
|
```bash
|
|
18
18
|
# with pnpm:
|
|
19
19
|
pnpm add @md-plugins/md-plugin-frontmatter
|
|
20
|
+
# with bun:
|
|
21
|
+
bun add @md-plugins/md-plugin-frontmatter
|
|
20
22
|
# with Yarn:
|
|
21
23
|
yarn add @md-plugins/md-plugin-frontmatter
|
|
22
24
|
# with npm:
|
|
@@ -107,6 +109,13 @@ pnpm test
|
|
|
107
109
|
|
|
108
110
|
In case this README falls out of date, please refer to the [documentation](https://md-plugins.netlify.app/md-plugins/frontmatter/overview) for the latest information.
|
|
109
111
|
|
|
112
|
+
## Support
|
|
113
|
+
|
|
114
|
+
If md-plugin-frontmatter is useful in your workflow and you want to support ongoing maintenance:
|
|
115
|
+
|
|
116
|
+
GitHub Sponsors: https://github.com/sponsors/hawkeye64
|
|
117
|
+
PayPal: https://paypal.me/hawkeye64
|
|
118
|
+
|
|
110
119
|
## License
|
|
111
120
|
|
|
112
121
|
This project is licensed under the MIT License. See the [LICENSE](LICENSE.md) file for details.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@md-plugins/md-plugin-frontmatter",
|
|
3
|
-
"version": "0.1.0-beta.
|
|
3
|
+
"version": "0.1.0-beta.20",
|
|
4
4
|
"description": "A markdown-it plugin for handling frontmatter in markdown files.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"markdown-it",
|
|
@@ -38,12 +38,12 @@
|
|
|
38
38
|
"devDependencies": {
|
|
39
39
|
"@types/markdown-it": "^14.1.2",
|
|
40
40
|
"gray-matter": "^4.0.3",
|
|
41
|
-
"markdown-it": "^14.
|
|
42
|
-
"@md-plugins/shared": "0.1.0-beta.
|
|
41
|
+
"markdown-it": "^14.2.0",
|
|
42
|
+
"@md-plugins/shared": "0.1.0-beta.20"
|
|
43
43
|
},
|
|
44
44
|
"peerDependencies": {
|
|
45
45
|
"gray-matter": "^4.0.3",
|
|
46
|
-
"markdown-it": "^14.
|
|
46
|
+
"markdown-it": "^14.2.0"
|
|
47
47
|
},
|
|
48
48
|
"scripts": {
|
|
49
49
|
"build": "unbuild",
|