markdownscribe 0.0.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.
Files changed (3) hide show
  1. package/README.md +7 -0
  2. package/index.js +5 -0
  3. package/package.json +10 -0
package/README.md ADDED
@@ -0,0 +1,7 @@
1
+ # MarkdownScribe
2
+
3
+ The unified Markdown utility kit — TOC, lint, format, frontmatter, Mermaid to SVG, URL to MD.
4
+
5
+ Coming soon at [markdownscribe.com](https://markdownscribe.com)
6
+
7
+ This package is reserved for the upcoming release.
package/index.js ADDED
@@ -0,0 +1,5 @@
1
+ // MarkdownScribe — coming soon at https://markdownscribe.com
2
+ module.exports = {
3
+ status: "coming-soon",
4
+ homepage: "https://markdownscribe.com"
5
+ };
package/package.json ADDED
@@ -0,0 +1,10 @@
1
+ {
2
+ "name": "markdownscribe",
3
+ "version": "0.0.1",
4
+ "description": "MarkdownScribe — the unified Markdown utility kit. Coming soon at https://markdownscribe.com",
5
+ "main": "index.js",
6
+ "keywords": ["markdown", "toc", "lint", "format", "frontmatter", "mermaid", "utilities"],
7
+ "author": "Matheus Ramos <markdownscribe@gmail.com>",
8
+ "license": "MIT",
9
+ "homepage": "https://markdownscribe.com"
10
+ }