mc-markdown-viewer 1.0.0 → 1.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 +27 -0
  2. package/package.json +1 -1
  3. package/pub.sh +1 -0
package/README.md ADDED
@@ -0,0 +1,27 @@
1
+ # Markdown to HTML CLI
2
+
3
+ > A CLI tool to convert Markdown files into beautifully styled HTML pages with a dark theme
4
+
5
+ ---
6
+
7
+ ## Features
8
+
9
+ - Converts Markdown files to HTML
10
+ - Automatically open the generated HTML in the default browse
11
+ ---
12
+
13
+ ## Installation
14
+
15
+ Install globally via npm:
16
+
17
+ ```bash
18
+ npm install -g mc-markdown-viewer
19
+ ```
20
+
21
+ ## Usage
22
+ ```bash
23
+
24
+ md-viewer --help # get help
25
+
26
+ md-viewer -f README.md -t forest
27
+ ```
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mc-markdown-viewer",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "A beautiful CLI tool to convert Markdown files to HTML with multiple dark themes and modern styling",
5
5
 
6
6
  "main": "main.js",
package/pub.sh ADDED
@@ -0,0 +1 @@
1
+ npm publish --access public