markdown-to-html-cli 3.10.1 → 3.10.2
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 +2 -2
- package/lib/index.js +14 -14
- package/package.json +1 -1
- package/src/index.ts +14 -14
package/README.md
CHANGED
|
@@ -158,8 +158,8 @@ Example:
|
|
|
158
158
|
markdown-to-html --title="Hello World!"
|
|
159
159
|
markdown-to-html --config="config/conf.json"
|
|
160
160
|
npx markdown-to-html-cli
|
|
161
|
-
|
|
162
|
-
|
|
161
|
+
npx markdown-to-html-cli **/*.md --output "dist"
|
|
162
|
+
npx markdown-to-html-cli **/*.md --ignore-file="(test)"
|
|
163
163
|
npx markdown-to-html-cli --markdown="Hello World!"
|
|
164
164
|
npx markdown-to-html-cli --no-dark-mode
|
|
165
165
|
npx markdown-to-html-cli --dark-mode auto
|
package/lib/index.js
CHANGED
|
@@ -108,20 +108,20 @@ export const cliHelp = `\n Usage: markdown-to-html [options] [--help|h]
|
|
|
108
108
|
`;
|
|
109
109
|
export const exampleHelp = `\n Example:
|
|
110
110
|
|
|
111
|
-
\x1b[
|
|
112
|
-
\x1b[
|
|
113
|
-
\x1b[
|
|
114
|
-
\x1b[
|
|
115
|
-
\x1b[
|
|
116
|
-
\x1b[
|
|
117
|
-
\x1b[
|
|
118
|
-
\x1b[
|
|
119
|
-
\x1b[
|
|
120
|
-
\x1b[
|
|
121
|
-
\x1b[
|
|
122
|
-
\x1b[
|
|
123
|
-
\x1b[
|
|
124
|
-
\x1b[
|
|
111
|
+
\x1b[35mnpx\x1b[0m markdown-to-html-cli
|
|
112
|
+
\x1b[35mnpx\x1b[0m markdown-to-html-cli **/*.md \x1b[33m--output\x1b[0m "dist"
|
|
113
|
+
\x1b[35mnpx\x1b[0m markdown-to-html-cli **/*.md \x1b[33m--ignore-file\x1b[0m="(test)"
|
|
114
|
+
\x1b[35mmarkdown-to-html\x1b[0m \x1b[33m--title\x1b[0m="Hello World!"
|
|
115
|
+
\x1b[35mmarkdown-to-html\x1b[0m \x1b[33m--config\x1b[0m="config/conf.json"
|
|
116
|
+
\x1b[35mnpx\x1b[0m markdown-to-html-cli \x1b[33m--markdown\x1b[0m="Hello World!"
|
|
117
|
+
\x1b[35mnpx\x1b[0m markdown-to-html-cli \x1b[33m--no-dark-mode\x1b[0m
|
|
118
|
+
\x1b[35mnpx\x1b[0m markdown-to-html-cli \x1b[33m--markdown-style-theme\x1b[0m dark
|
|
119
|
+
\x1b[35mnpx\x1b[0m markdown-to-html-cli \x1b[33m--github-corners\x1b[0m https://github.com/jaywcjlove/markdown-to-html-cli
|
|
120
|
+
\x1b[35mnpx\x1b[0m markdown-to-html-cli \x1b[33m--github-corners\x1b[0m https://github.com/jaywcjlove --github-corners-fork
|
|
121
|
+
\x1b[35mnpx\x1b[0m markdown-to-html-cli \x1b[33m--output\x1b[0m coverage/index.html
|
|
122
|
+
\x1b[35mnpx\x1b[0m markdown-to-html-cli \x1b[33m--source\x1b[0m README.md
|
|
123
|
+
\x1b[35mnpx\x1b[0m markdown-to-html-cli \x1b[33m--source\x1b[0m README.md --style=./style.css
|
|
124
|
+
\x1b[35mnpx\x1b[0m markdown-to-html-cli \x1b[33m--source\x1b[0m README.md --style='body { color: red; }'
|
|
125
125
|
|
|
126
126
|
`;
|
|
127
127
|
//# sourceMappingURL=index.js.map
|
package/package.json
CHANGED
package/src/index.ts
CHANGED
|
@@ -165,19 +165,19 @@ export const cliHelp: string = `\n Usage: markdown-to-html [options] [--help|h]
|
|
|
165
165
|
|
|
166
166
|
export const exampleHelp: string =`\n Example:
|
|
167
167
|
|
|
168
|
-
\x1b[
|
|
169
|
-
\x1b[
|
|
170
|
-
\x1b[
|
|
171
|
-
\x1b[
|
|
172
|
-
\x1b[
|
|
173
|
-
\x1b[
|
|
174
|
-
\x1b[
|
|
175
|
-
\x1b[
|
|
176
|
-
\x1b[
|
|
177
|
-
\x1b[
|
|
178
|
-
\x1b[
|
|
179
|
-
\x1b[
|
|
180
|
-
\x1b[
|
|
181
|
-
\x1b[
|
|
168
|
+
\x1b[35mnpx\x1b[0m markdown-to-html-cli
|
|
169
|
+
\x1b[35mnpx\x1b[0m markdown-to-html-cli **/*.md \x1b[33m--output\x1b[0m "dist"
|
|
170
|
+
\x1b[35mnpx\x1b[0m markdown-to-html-cli **/*.md \x1b[33m--ignore-file\x1b[0m="(test)"
|
|
171
|
+
\x1b[35mmarkdown-to-html\x1b[0m \x1b[33m--title\x1b[0m="Hello World!"
|
|
172
|
+
\x1b[35mmarkdown-to-html\x1b[0m \x1b[33m--config\x1b[0m="config/conf.json"
|
|
173
|
+
\x1b[35mnpx\x1b[0m markdown-to-html-cli \x1b[33m--markdown\x1b[0m="Hello World!"
|
|
174
|
+
\x1b[35mnpx\x1b[0m markdown-to-html-cli \x1b[33m--no-dark-mode\x1b[0m
|
|
175
|
+
\x1b[35mnpx\x1b[0m markdown-to-html-cli \x1b[33m--markdown-style-theme\x1b[0m dark
|
|
176
|
+
\x1b[35mnpx\x1b[0m markdown-to-html-cli \x1b[33m--github-corners\x1b[0m https://github.com/jaywcjlove/markdown-to-html-cli
|
|
177
|
+
\x1b[35mnpx\x1b[0m markdown-to-html-cli \x1b[33m--github-corners\x1b[0m https://github.com/jaywcjlove --github-corners-fork
|
|
178
|
+
\x1b[35mnpx\x1b[0m markdown-to-html-cli \x1b[33m--output\x1b[0m coverage/index.html
|
|
179
|
+
\x1b[35mnpx\x1b[0m markdown-to-html-cli \x1b[33m--source\x1b[0m README.md
|
|
180
|
+
\x1b[35mnpx\x1b[0m markdown-to-html-cli \x1b[33m--source\x1b[0m README.md --style=./style.css
|
|
181
|
+
\x1b[35mnpx\x1b[0m markdown-to-html-cli \x1b[33m--source\x1b[0m README.md --style='body { color: red; }'
|
|
182
182
|
|
|
183
183
|
`;
|