Skip to content

Commit 89d5467

Browse files
committed
docs: fix code fence closings in svg style guide
1 parent a0430ed commit 89d5467

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

docs/diagram/svg_style_guide.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343
--svg-error: #EF4444;
4444
--svg-neutral: #9CA3AF;
4545
}
46-
```text
46+
```
4747

4848
### 認知負荷軽減原則
4949
- **色数制限**: 基本5色のみ使用
@@ -198,20 +198,20 @@ font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
198198
## ファイル管理
199199

200200
### 命名規則
201-
```
201+
```text
202202
{章番号}_{図番号}_{図表名}.svg
203203
例: 03_02_database_architecture.svg
204-
```text
204+
```
205205

206206
### ディレクトリ構造
207-
```
207+
```text
208208
/assets/
209209
/images/
210210
/diagrams/
211211
/chapter01/
212212
/chapter02/
213213
/common/
214-
```text
214+
```
215215

216216
### 最適化
217217
- SVGO使用(設定ファイル提供)
@@ -266,7 +266,7 @@ function toggleTheme() {
266266
const savedTheme = localStorage.getItem('theme') ||
267267
(window.matchMedia('(prefers-color-scheme: dark)').matches ? 'dark' : 'light');
268268
document.documentElement.setAttribute('data-theme', savedTheme);
269-
```text
269+
```
270270

271271
### レスポンシブ埋め込み
272272
```html

0 commit comments

Comments
 (0)