Skip to content

Commit 82d661f

Browse files
committed
Renamed markdown-tools to markdown-utilities
1 parent 80b2b5c commit 82d661f

File tree

4 files changed

+17
-17
lines changed

4 files changed

+17
-17
lines changed

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
1-
# markdown-tools
1+
# markdown-utilities
22
A collection of small handy tools for improving and converting markdown
33

44
# Tools
55

66
<!-- toc -->
77

8-
- [markdown-tools-github-toc](#markdown-tools-github-toc)
8+
- [markdown-utilities-github-toc](#markdown-utilities-github-toc)
99

1010
<!-- tocstop -->
1111

12-
# markdown-tools-github-toc
12+
# markdown-utilities-github-toc
1313

1414
Add Github compatible table of content to markdown (Replacing "&lt;!-- toc --&gt;" in source file)
1515

@@ -25,17 +25,17 @@ This tools uses [markdown-toc](https://github.com/jonschlinkert/markdown-toc#toc
2525

2626
```
2727
Usage:
28-
$ markdown-tools-github-toc <source> [<destination>] [<options>]
28+
$ markdown-utilities-github-toc <source> [<destination>] [<options>]
2929
3030
<source> must be a markdown file, with the extension '.md'.
3131
<destination> must be a markdown file, with the extension '.md'
3232
if ommitted it will be named <source>-toc.md
3333
3434
3535
Examples:
36-
$ markdown-tools-github-toc README.md
37-
$ markdown-tools-github-toc in.md out.md --maxdepth 3
38-
$ markdown-tools-github-toc README.md --insert
36+
$ markdown-utilities-github-toc README.md
37+
$ markdown-utilities-github-toc in.md out.md --maxdepth 3
38+
$ markdown-utilities-github-toc README.md --insert
3939
4040
Options:
4141
--help Display this menu

bin/markdown-github-toc.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,17 +11,17 @@ const meow = require('meow')
1111

1212
const cli = meow(`
1313
Usage:
14-
$ markdown-tools-github-toc <source> [<destination>] [<options>]
14+
$ markdown-utilities-github-toc <source> [<destination>] [<options>]
1515
1616
<source> must be a markdown file, with the extension '.md'.
1717
<destination> must be a markdown file, with the extension '.md'
1818
if ommitted it will be named <source>-toc.md
1919
2020
2121
Examples:
22-
$ markdown-tools-github-toc README.md
23-
$ markdown-tools-github-toc in.md out.md --maxdepth 3
24-
$ markdown-tools-github-toc README.md --insert
22+
$ markdown-utilities-github-toc README.md
23+
$ markdown-utilities-github-toc in.md out.md --maxdepth 3
24+
$ markdown-utilities-github-toc README.md --insert
2525
2626
Options:
2727
--help Display this menu

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "markdown-tools",
2+
"name": "markdown-utilities",
33
"version": "0.0.1",
44
"description": "A collection of small handy tools for improving and converting markdown",
55
"main": "index.js",
@@ -8,14 +8,14 @@
88
},
99
"repository": {
1010
"type": "git",
11-
"url": "git+https://github.com/hacker112/markdown-tools.git"
11+
"url": "git+https://github.com/hacker112/markdown-utilities.git"
1212
},
1313
"author": "David Granqvist",
1414
"license": "ISC",
1515
"bugs": {
16-
"url": "https://github.com/hacker112/markdown-tools/issues"
16+
"url": "https://github.com/hacker112/markdown-utilities/issues"
1717
},
18-
"homepage": "https://github.com/hacker112/markdown-tools#readme",
18+
"homepage": "https://github.com/hacker112/markdown-utilities#readme",
1919
"dependencies": {
2020
"markdown-toc": "^1.2.0",
2121
"meow": "^5.0.0"
@@ -24,6 +24,6 @@
2424
"eslint": "^6.6.0"
2525
},
2626
"bin": {
27-
"markdown-tools-github-toc": "bin/markdown-github-toc.js"
27+
"markdown-utilities-github-toc": "bin/markdown-github-toc.js"
2828
}
2929
}

0 commit comments

Comments
 (0)