Skip to content

Commit baaa8c8

Browse files
committed
Prepare v0.0.3
1 parent 66a6762 commit baaa8c8

File tree

3 files changed

+10
-6
lines changed

3 files changed

+10
-6
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# hackmd-to-html-cli
22

3-
![](https://img.shields.io/github/workflow/status/liao2000/HackMD-to-HTML/CI?style=flat-square)
4-
[![NPM version](https://img.shields.io/npm/v/hackmd-to-html-cli.svg?style=flat-square)](https://www.npmjs.org/package/hackmd-to-html-cli)
3+
![](https://img.shields.io/github/workflow/status/liao2000/hackmd-to-html-cli/CI?style=flat-square)
4+
[![NPM version](https://img.shields.io/npm/v/hackmd-to-html-cli.svg?style=flat-square)](https://www.npmjs.org/package/hackmd-to-html-cli) ![](https://img.shields.io/npm/dt/hackmd-to-html-cli?color=blue&style=flat-square)
55

66
A simple Node.js wrapper for `markdown-it`. This tool helps to convert HackMD markdown files to HTML files.
77

@@ -11,7 +11,7 @@ A simple Node.js wrapper for `markdown-it`. This tool helps to convert HackMD ma
1111
npm install -g hackmd-to-html-cli
1212
```
1313

14-
See demo: [https://liao2000.github.io/HackMD-to-HTML/](https://liao2000.github.io/HackMD-to-HTML/)
14+
See demo: [https://liao2000.github.io/hackmd-to-html-cli/](https://liao2000.github.io/hackmd-to-html-cli/)
1515

1616
## Usage
1717

lib/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/usr/bin/env node
22
import commander from 'commander';
33

4-
commander.program.version('0.0.1', '-v, --version', 'output the current version');
4+
commander.program.version('0.0.3', '-v, --version', 'output the current version');
55
commander.program
66
.requiredOption('-s, --source <files_or_dirs...>', 'specify the input markdown files or directories')
77
.addOption(new commander.Option('-d, --destination <path>', 'specify the output directory').default('./output', './output'))

package.json

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "hackmd-to-html-cli",
3-
"version": "0.0.2",
3+
"version": "0.0.3",
44
"description": "A cli tool converts hackmd to html",
55
"keywords": [
66
"hackmd",
@@ -9,7 +9,11 @@
99
"cli",
1010
"converter"
1111
],
12-
"repository": "liao2000/HackMD-to-HTML",
12+
"homepage": "https://github.com/liao2000/hackmd-to-html-cli.git",
13+
"repository": {
14+
"type": "git",
15+
"url": "https://github.com/liao2000/hackmd-to-html-cli.git"
16+
},
1317
"bin": {
1418
"hmd2html": "dist/index.js"
1519
},

0 commit comments

Comments
 (0)