図の生成物を plantuml/out/・drawio/out/ に集約し images/ を廃止する - #25
Merged
pollenjp merged 2 commits intoJul 19, 2026
Merged
Conversation
教科書の図をこれまでの docs/textbook/images/ へコピーする方式から、 生成先の docs/textbook/plantuml/out/ を直接参照する方式へ変更する。 - SVG 6 枚を images/ から plantuml/out/ へ移動 - 教科書各章・README の画像参照を ./plantuml/out/ に更新 - mise の diagrams タスクから images/ へのコピー処理を削除 - .gitignore で out/ を追跡対象にし、生成物をコミットする - images/ は drawio エクスポート用の置き場として案内を残す Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01PG8YYqW1fQsT92uuEaY1M9
PlantUML(plantuml/out/)と構成を揃え、drawio のエクスポート先も 生成元と同じ drawio/ 配下の out/ に集約する。 - drawio ガイドのエクスポート先を docs/textbook/images/ → docs/textbook/drawio/out/ に変更 - ディレクトリ構成の説明(README.md / 04-code-walkthrough.md)から images/ を削除し drawio/out/ を明記 - .gitignore のコメントを plantuml/out/・drawio/out/ の両生成物に対応するよう更新 Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01PG8YYqW1fQsT92uuEaY1M9
pollenjp
marked this pull request as ready for review
July 19, 2026 07:14
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
概要
PR #22 の教科書ドキュメントについて、図の生成物(SVG)の置き場を整理します。PlantUML と drawio の生成物を、それぞれの生成元と同じディレクトリ配下の
out/に集約し、教科書はそこを直接参照します。旧docs/textbook/images/は廃止します。docs/textbook/plantuml/out/docs/textbook/drawio/out/変更内容
PlantUML(1 コミット目)
docs/textbook/images/→docs/textbook/plantuml/out/へ移動(git mv、内容は同一)01,03,04,05) とREADME.mdの画像リンクを./plantuml/out/…に更新mise.tomlのdiagramsからimages/へのコピー処理を削除(生成先のout/をそのまま使う).gitignoreでout/を追跡対象にし、教科書が参照する SVG をコミット06-appendix.mdの再生成手順を更新し、ついでにリンク切れ (../../plantuml/→./plantuml/) も修正drawio(2 コミット目)
docs/textbook/drawio/out/に統一(PlantUML と構成を揃える)README.md/04-code-walkthrough.md)からimages/を削除補足
docs/textbook/plantuml/mise.tomlのplantuml:generateは元々out/に出力する実装のため変更なしdrawio/out/は必要時に作成する運用🤖 Generated with Claude Code