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.
- package/README.md +27 -0
- package/package.json +1 -1
- 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
package/pub.sh
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
npm publish --access public
|