From 372efdc8851f81f10493072d2054b661630bbb11 Mon Sep 17 00:00:00 2001 From: okash1n <48118431+okash1n@users.noreply.github.com> Date: Mon, 26 Jan 2026 14:52:00 +0900 Subject: [PATCH] =?UTF-8?q?fix:=20Mermaid=E3=83=80=E3=82=A4=E3=82=A2?= =?UTF-8?q?=E3=82=B0=E3=83=A9=E3=83=A0=E3=81=AE=E3=82=B7=E3=83=B3=E3=82=BF?= =?UTF-8?q?=E3=83=83=E3=82=AF=E3=82=B9=E3=82=A8=E3=83=A9=E3=83=BC=E3=82=92?= =?UTF-8?q?=E4=BF=AE=E6=AD=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - PDCAダイアグラムのノードラベルをダブルクォートで囲んで日本語文字の パースエラーを解消 - 用語集ページのfrontmatterにprev/nextをfalseに設定 Co-Authored-By: Claude --- docs/glossary/index.md | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/docs/glossary/index.md b/docs/glossary/index.md index 30a8578..78f3701 100644 --- a/docs/glossary/index.md +++ b/docs/glossary/index.md @@ -1,3 +1,8 @@ +--- +prev: false +next: false +--- + # 用語集 ISMS(情報セキュリティマネジメントシステム)に関する重要な用語を解説します。 @@ -104,9 +109,9 @@ Plan-Do-Check-Act サイクル。継続的改善のための管理手法。 ```mermaid graph TD - P[Plan 計画] --> D[Do 実行] - D --> C[Check 評価] - C --> A[Act 改善] + P["Plan (計画)"] --> D["Do (実行)"] + D --> C["Check (評価)"] + C --> A["Act (改善)"] A --> P ```