Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 7 additions & 2 deletions .github/workflows/GHPages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,16 @@ jobs:
- uses: actions/setup-node@v4
- uses: docker://pandoc/latex:2.9
with:
args: sh build-resources-with-pandoc.sh
args: |
sh -c "
apt-get update \
&& apt-get install -y python3-pip \
&& pip3 install mermaid-filter \
&& sh build-resources-with-pandoc.sh
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@ma91n build-resources-with-pandoc.shの中でやってもらえませんか?せっかく共有できるようにしているので

"
- name: Install Packages
run: |
npm i -f
npm i --global mermaid-filter
- name: Build all
run: |
npm run build
Expand Down
4 changes: 2 additions & 2 deletions documents/forOpenAPISpecification/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,8 +54,8 @@ OAS は次のように複数のバージョンが存在します。
次のリンクから単一ファイルで作成されたコーディング規約を取得できます。
(これらのファイルは[Pandoc]を利用して作成しています。)

- [Markdown](https://github.com/future-architect/coding-standards/blob/master/documents/forOpenAPISpecification/OpenAPI_Specification_2.0.md)
- [HTML(Single File)](https://github.com/future-architect/coding-standards/blob/gh-pages/resources/OpenAPI_Specification_2.0.html) ([ブラウザで見る](https://future-architect.github.io/coding-standards/resources/OpenAPI_Specification_3.0.3.html))
- [Markdown](https://github.com/future-architect/coding-standards/blob/master/documents/forOpenAPISpecification/OpenAPI_Specification_3.0.3.md)
- [HTML(Single File)](https://github.com/future-architect/coding-standards/blob/gh-pages/resources/OpenAPI_Specification_3.0.3.html) ([ブラウザで見る](https://future-architect.github.io/coding-standards/resources/OpenAPI_Specification_3.0.3.html))
- [Word](https://github.com/future-architect/coding-standards/raw/gh-pages/resources/OpenAPI_Specification_3.0.3.docx)

[pandoc]: https://pandoc.org/
Expand Down
Loading