You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .github/workflows/ci.yml
+39-2Lines changed: 39 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -22,10 +22,47 @@ jobs:
22
22
- run: npm run package
23
23
- run: npm run coverage
24
24
25
+
- name: Create README.md Config.
26
+
run: |
27
+
cat > conf.json << EOF
28
+
{
29
+
"document": {
30
+
"title": "markdown-to-html-cli",
31
+
"description": "Converts markdown text to HTML, Provide command line tools and methods. If you are simply converting a small number of Markdown files (or text) into HTML pages, this is very helpful for you.",
32
+
"meta": [
33
+
{ "description": "Converts markdown text to HTML, Provide command line tools and methods. If you are simply converting a small number of Markdown files (or text) into HTML pages, this is very helpful for you." },
34
+
{ "keywords": "markdown,markdown-to-html,markdown-to-html-cli,markdown to HTML,markdown converter,command line tools,convert markdown,markdown to HTML pages,HTML generation,markdown tools" }
35
+
]
36
+
},
37
+
"reurls": {
38
+
"README-zh.md": "index.zh.html",
39
+
"README.md": "index.html"
40
+
}
41
+
}
42
+
EOF
43
+
44
+
- name: Create README-zh.md Config.
45
+
run: |
46
+
cat > conf.json << EOF
47
+
{
48
+
"document": {
49
+
"title": "markdown-to-html-cli",
50
+
"description": "将 Markdown 文本转换为 HTML,提供命令行工具和方法。如果您只是将少量的 Markdown 文件(或文本)转换为 HTML 页面,这将对您非常有帮助。",
Copy file name to clipboardExpand all lines: package.json
-8Lines changed: 0 additions & 8 deletions
Original file line number
Diff line number
Diff line change
@@ -48,14 +48,6 @@
48
48
]
49
49
},
50
50
"markdown-to-html": {
51
-
"document": {
52
-
"title": "markdown-to-html-cli",
53
-
"description": "Converts markdown text to HTML, Provide command line tools and methods. If you are simply converting a small number of Markdown files (or text) into HTML pages, this is very helpful for you.",
54
-
"meta": [
55
-
{ "description": "Converts markdown text to HTML, Provide command line tools and methods. If you are simply converting a small number of Markdown files (or text) into HTML pages, this is very helpful for you." },
56
-
{ "keywords": "markdown,markdown-to-html,markdown-to-html-cli,markdown to HTML,markdown converter,command line tools,convert markdown,markdown to HTML pages,HTML generation,markdown tools" }
0 commit comments