Skip to content

Commit 1b4a2bc

Browse files
authored
markdown design document (#179)
1 parent c33d8fa commit 1b4a2bc

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ footer: ©2015 - 2024 Future Enterprise Coding Standards - Future Corporation
2020
| 3 | [AWS インフラリソース命名規約](./documents/forAWSResource/) | <page-info href="https://future-architect.github.io/coding-standards/documents/forAWSResource/AWSインフラリソース命名規約.html"></page-info> |
2121
| 4 | [OpenAPI Specification 規約](./documents/forOpenAPISpecification/) | <page-info href="https://future-architect.github.io/coding-standards/documents/forOpenAPISpecification/OpenAPI_Specification規約.html"></page-info> |
2222
| 5 | [Gitブランチフロー規約](./documents/forGitBranch/) | <page-info href="https://future-architect.github.io/coding-standards/documents/forGitBranch/git_branch_standards.html"></page-info> |
23+
| 6 | [Markdown設計ドキュメント規約](./documents/forMarkdown/) | <page-info href="https://future-architect.github.io/coding-standards/documents/forMarkdown/markdown_design_document.html"></page-info> |
2324

2425
---
2526

package.json

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,9 @@
77
"install": "npm install --global mermaid-filter",
88
"lint": "eslint . .vuepress --ext .js,.vue",
99
"watch": "vuepress dev . --debug --no-cache",
10-
"copy": "cp -r documents/forGitBranch/img docs/documents/forGitBranch/img",
10+
"copy": "npm-run-all copy:*",
11+
"copy:git": "cp -r documents/forGitBranch/img docs/documents/forGitBranch/img",
12+
"copy:markdown": "cp -r documents/forMarkdnwo/docs/future_muscle_partner_abstract.png docs/documents/forMarkdown/docs/future_muscle_partner_abstract.png",
1113
"build": "vuepress build .",
1214
"format": "prettier . --write",
1315
"pandoc": "npm-run-all pandoc:*",
@@ -20,7 +22,9 @@
2022
"pandoc:swagger-html": "pandoc ./documents/forOpenAPISpecification/OpenAPI_Specification_2.0.md -s --self-contained --number-sections --toc -t html5 -F mermaid-filter.cmd -c ./documents/common/pandoc_styles/css/style.css -o ./documents/forOpenAPISpecification/OpenAPI_Specification_2.0規約.html",
2123
"pandoc:swagger-word": "pandoc ./documents/forOpenAPISpecification/OpenAPI_Specification_2.0.md --toc --reference-doc=./documents/common/pandoc_styles/スタイル.docx -F mermaid-filter.cmd -s -o ./documents/forOpenAPISpecification/OpenAPI_Specification_2.0規約.docx",
2224
"pandoc:gitbranch-html": "pandoc ./documents/forGitBranch/git_branch_standards.md -s --self-contained --number-sections --toc -t html5 -F mermaid-filter.cmd -c ./documents/common/pandoc_styles/css/style.css -o ./documents/forGitBranch/Gitブランチフロー.html",
23-
"pandoc:gitbranch-word": "pandoc ./documents/forGitBranch/git_branch_standards.md --toc --reference-doc=./documents/common/pandoc_styles/スタイル.docx -F mermaid-filter.cmd -s -o ./documents/forGitBranch/Gitブランチフロー.docx"
25+
"pandoc:gitbranch-word": "pandoc ./documents/forGitBranch/git_branch_standards.md --toc --reference-doc=./documents/common/pandoc_styles/スタイル.docx -F mermaid-filter.cmd -s -o ./documents/forGitBranch/Gitブランチフロー.docx",
26+
"pandoc:markdown-html": "pandoc ./documents/forMarkdown/README.md -s --self-contained --number-sections --toc -t html5 -F mermaid-filter.cmd -c ./documents/common/pandoc_styles/css/style.css -o ./documents/forMarkdown/Markdown設計ドキュメント規約.html",
27+
"pandoc:markdown-word": "pandoc ./documents/forMarkdown/README.md --toc --reference-doc=./documents/common/pandoc_styles/スタイル.docx -F mermaid-filter.cmd -s -o ./documents/forMarkdown/Markdown設計ドキュメント規約.docx"
2428
},
2529
"repository": {
2630
"type": "git ",

0 commit comments

Comments
 (0)