@jjlmoya/utils-games-development 1.53.0 → 1.55.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (72) hide show
  1. package/package.json +1 -1
  2. package/src/category/index.ts +2 -1
  3. package/src/entries.ts +6 -1
  4. package/src/index.ts +2 -0
  5. package/src/tests/contrast_legibility.test.ts +245 -0
  6. package/src/tests/locale_completeness.test.ts +2 -2
  7. package/src/tests/tool_validation.test.ts +2 -2
  8. package/src/tool/itchioGameTester/itchio-game-tester.css +3 -3
  9. package/src/tool/localizationSanitizer/localization-sanitizer.css +13 -13
  10. package/src/tool/retroSfxGenerator/bibliography.astro +6 -0
  11. package/src/tool/retroSfxGenerator/bibliography.ts +16 -0
  12. package/src/tool/retroSfxGenerator/client.ts +256 -0
  13. package/src/tool/retroSfxGenerator/component.astro +146 -0
  14. package/src/tool/retroSfxGenerator/entry.ts +27 -0
  15. package/src/tool/retroSfxGenerator/i18n/de.ts +211 -0
  16. package/src/tool/retroSfxGenerator/i18n/en.ts +224 -0
  17. package/src/tool/retroSfxGenerator/i18n/es.ts +211 -0
  18. package/src/tool/retroSfxGenerator/i18n/fr.ts +211 -0
  19. package/src/tool/retroSfxGenerator/i18n/id.ts +211 -0
  20. package/src/tool/retroSfxGenerator/i18n/it.ts +211 -0
  21. package/src/tool/retroSfxGenerator/i18n/ja.ts +211 -0
  22. package/src/tool/retroSfxGenerator/i18n/ko.ts +211 -0
  23. package/src/tool/retroSfxGenerator/i18n/nl.ts +211 -0
  24. package/src/tool/retroSfxGenerator/i18n/pl.ts +211 -0
  25. package/src/tool/retroSfxGenerator/i18n/pt.ts +211 -0
  26. package/src/tool/retroSfxGenerator/i18n/ru.ts +211 -0
  27. package/src/tool/retroSfxGenerator/i18n/sv.ts +211 -0
  28. package/src/tool/retroSfxGenerator/i18n/tr.ts +211 -0
  29. package/src/tool/retroSfxGenerator/i18n/zh.ts +211 -0
  30. package/src/tool/retroSfxGenerator/index.ts +11 -0
  31. package/src/tool/retroSfxGenerator/logic.test.ts +40 -0
  32. package/src/tool/retroSfxGenerator/logic.ts +214 -0
  33. package/src/tool/retroSfxGenerator/retro-sfx-generator.css +429 -0
  34. package/src/tool/retroSfxGenerator/seo.astro +15 -0
  35. package/src/tool/retroSfxGenerator/ui.ts +41 -0
  36. package/src/tool/saveFileEditor/game-save-file-editor.css +5 -5
  37. package/src/tool/spriteSheetPacker/sprite-sheet-packer.css +5 -5
  38. package/src/tool/steamBbcodeTranslator/app-client.ts +125 -0
  39. package/src/tool/steamBbcodeTranslator/bbcode-parser.ts +110 -0
  40. package/src/tool/steamBbcodeTranslator/bibliography.astro +6 -0
  41. package/src/tool/steamBbcodeTranslator/bibliography.ts +14 -0
  42. package/src/tool/steamBbcodeTranslator/component.astro +83 -0
  43. package/src/tool/steamBbcodeTranslator/entry.ts +28 -0
  44. package/src/tool/steamBbcodeTranslator/html-parser.ts +42 -0
  45. package/src/tool/steamBbcodeTranslator/html-renderer.ts +71 -0
  46. package/src/tool/steamBbcodeTranslator/i18n/de.ts +207 -0
  47. package/src/tool/steamBbcodeTranslator/i18n/en.ts +236 -0
  48. package/src/tool/steamBbcodeTranslator/i18n/es.ts +207 -0
  49. package/src/tool/steamBbcodeTranslator/i18n/fr.ts +195 -0
  50. package/src/tool/steamBbcodeTranslator/i18n/id.ts +195 -0
  51. package/src/tool/steamBbcodeTranslator/i18n/it.ts +195 -0
  52. package/src/tool/steamBbcodeTranslator/i18n/ja.ts +195 -0
  53. package/src/tool/steamBbcodeTranslator/i18n/ko.ts +195 -0
  54. package/src/tool/steamBbcodeTranslator/i18n/nl.ts +195 -0
  55. package/src/tool/steamBbcodeTranslator/i18n/pl.ts +195 -0
  56. package/src/tool/steamBbcodeTranslator/i18n/pt.ts +195 -0
  57. package/src/tool/steamBbcodeTranslator/i18n/ru.ts +195 -0
  58. package/src/tool/steamBbcodeTranslator/i18n/sv.ts +195 -0
  59. package/src/tool/steamBbcodeTranslator/i18n/tr.ts +195 -0
  60. package/src/tool/steamBbcodeTranslator/i18n/zh.ts +195 -0
  61. package/src/tool/steamBbcodeTranslator/index.ts +12 -0
  62. package/src/tool/steamBbcodeTranslator/logic.test.ts +41 -0
  63. package/src/tool/steamBbcodeTranslator/logic.ts +96 -0
  64. package/src/tool/steamBbcodeTranslator/markdown-parser.ts +115 -0
  65. package/src/tool/steamBbcodeTranslator/markdown-renderer.ts +85 -0
  66. package/src/tool/steamBbcodeTranslator/seo.astro +15 -0
  67. package/src/tool/steamBbcodeTranslator/steam-bbcode-translator.css +392 -0
  68. package/src/tool/steamBbcodeTranslator/storage.ts +30 -0
  69. package/src/tool/steamBbcodeTranslator/types.ts +36 -0
  70. package/src/tool/steamBbcodeTranslator/ui.ts +18 -0
  71. package/src/tool/steamCapsuleGenerator/steam-capsule-generator.css +6 -6
  72. package/src/tools.ts +4 -0
@@ -0,0 +1,195 @@
1
+ import type { ToolLocaleContent } from '../../../types';
2
+ import type { SteamBbcodeTranslatorUI } from '../ui';
3
+ import { bibliographyEntries } from '../bibliography';
4
+
5
+ export const content: ToolLocaleContent<SteamBbcodeTranslatorUI> = {
6
+ slug: 'konverter-bbcode-steam',
7
+ title: 'Konverter BBCode Steam, Markdown dan HTML',
8
+ description: 'Konversi antara BBCode Steam, Markdown, dan HTML ke segala arah dengan deteksi sintaks otomatis dan pratinjau langsung.',
9
+ ui: {
10
+ editorLabel: 'Tempel teks format Anda',
11
+ editorHint: 'BBCode, Markdown, atau HTML terdeteksi secara otomatis saat Anda mengetik.',
12
+ detectedLabel: 'Terdeteksi',
13
+ detectedEmpty: 'Menunggu teks',
14
+ bbcode: 'Steam BBCode',
15
+ markdown: 'Markdown',
16
+ html: 'HTML',
17
+ clear: 'Bersihkan',
18
+ copy: 'Salin hasil',
19
+ copied: 'Disalin ke papan klip',
20
+ characters: 'Karakter',
21
+ blocks: 'Blok',
22
+ privacyNote: 'Berjalan di browser Anda. Tidak ada unggahan.',
23
+ persistenceNote: 'Draf terakhir disimpan secara lokal',
24
+ previewLabel: 'Pratinjau',
25
+ previewEmpty: 'Pratinjau format Anda akan muncul di sini.'
26
+ },
27
+ seo: [
28
+ {
29
+ type: 'title',
30
+ level: 2,
31
+ text: 'Mengapa deskripsi toko membutuhkan konverter'
32
+ },
33
+ {
34
+ type: 'paragraph',
35
+ html: 'Deskripsi toko Steam menggunakan BBCode. Kit pers atau situs dokumentasi memerlukan Markdown atau HTML. Alat ini mengonversi format secara otomatis.'
36
+ },
37
+ {
38
+ type: 'title',
39
+ level: 2,
40
+ text: 'Format dan tag yang didukung'
41
+ },
42
+ {
43
+ type: 'paragraph',
44
+ html: 'Mendukung judul, cetak tebal, miring, tautan, daftar, kutipan, dan spoiler.'
45
+ },
46
+ {
47
+ type: 'stats',
48
+ columns: 4,
49
+ items: [
50
+ { label: 'Format input', value: '3' },
51
+ { label: 'Hasil per konversi', value: '2' },
52
+ { label: 'Kedalaman daftar', value: 'Bersarang' },
53
+ { label: 'Pemrosesan', value: 'Browser saja' }
54
+ ]
55
+ },
56
+ {
57
+ type: 'title',
58
+ level: 2,
59
+ text: 'Daftar bersarang tetap utuh'
60
+ },
61
+ {
62
+ type: 'paragraph',
63
+ html: 'Struktur pohon digunakan untuk memastikan daftar anak tetap berada di dalam item induknya.'
64
+ },
65
+ {
66
+ type: 'table',
67
+ headers: ['Steam BBCode', 'Markdown', 'HTML'],
68
+ rows: [
69
+ ['[h1]Judul[/h1]', '# Judul', '&lt;h1&gt;Judul&lt;/h1&gt;'],
70
+ ['[b]Penting[/b]', '**Penting**', '&lt;strong&gt;Penting&lt;/strong&gt;'],
71
+ ['[i]Catatan[/i]', '*Catatan*', '&lt;em&gt;Catatan&lt;/em&gt;'],
72
+ ['[url=https://example.com]Tautan[/url]', '[Tautan](https://example.com)', '&lt;a href="https://example.com"&gt;Tautan&lt;/a&gt;'],
73
+ ['[list][*]Satu[*]Dua[/list]', '- Satu\n- Dua', '&lt;ul&gt;&lt;li&gt;Satu&lt;/li&gt;&lt;li&gt;Dua&lt;/li&gt;&lt;/ul&gt;']
74
+ ]
75
+ },
76
+ {
77
+ type: 'title',
78
+ level: 2,
79
+ text: 'Perbedaan Markdown dan HTML'
80
+ },
81
+ {
82
+ type: 'paragraph',
83
+ html: 'Jika Markdown tidak mendukung garis bawah secara alami, elemen HTML sebaris akan digunakan.'
84
+ },
85
+ {
86
+ type: 'tip',
87
+ title: 'Pemeriksaan sebelum publikasi',
88
+ html: 'Bandingkan pratinjau dengan dokumen asli sebelum memublikasikannya ke Steam.'
89
+ },
90
+ {
91
+ type: 'title',
92
+ level: 2,
93
+ text: 'Privasi data deskripsi'
94
+ },
95
+ {
96
+ type: 'paragraph',
97
+ html: 'Semua pemrosesan dilakukan secara lokal di browser Anda tanpa mengunggah teks.'
98
+ },
99
+ {
100
+ type: 'title',
101
+ level: 2,
102
+ text: 'Batasan konversi'
103
+ },
104
+ {
105
+ type: 'proscons',
106
+ title: 'Pertimbangan',
107
+ items: [
108
+ {
109
+ pro: 'Struktur daftar terjaga.',
110
+ con: 'Tag kustom memerlukan peninjauan manual.'
111
+ }
112
+ ]
113
+ },
114
+ {
115
+ type: 'title',
116
+ level: 2,
117
+ text: 'Glosarium'
118
+ },
119
+ {
120
+ type: 'glossary',
121
+ items: [
122
+ {
123
+ term: 'BBCode',
124
+ definition: 'Sintaks berbasis kurung siku untuk Steam.'
125
+ },
126
+ {
127
+ term: 'Markdown',
128
+ definition: 'Sintaks teks polos yang mudah dibaca.'
129
+ },
130
+ {
131
+ term: 'HTML',
132
+ definition: 'Bahasa markup standar untuk web.'
133
+ }
134
+ ]
135
+ }
136
+ ],
137
+ faqTitle: 'Pertanyaan umum tentang konversi',
138
+ faq: [
139
+ {
140
+ question: 'Apakah teks diunggah ke server?',
141
+ answer: 'Tidak. Konversi berjalan sepenuhnya di browser Anda.'
142
+ },
143
+ {
144
+ question: 'Apakah daftar bersarang didukung?',
145
+ answer: 'Ya. Struktur daftar diurai sebelum hasil dihasilkan.'
146
+ }
147
+ ],
148
+ howTo: [
149
+ {
150
+ name: 'Tempel teks',
151
+ text: 'Tempel BBCode Steam, Markdown, atau HTML.'
152
+ },
153
+ {
154
+ name: 'Deteksi otomatis',
155
+ text: 'Dua format lainnya akan dihasilkan secara otomatis.'
156
+ }
157
+ ],
158
+ schemas: [
159
+ {
160
+ '@context': 'https://schema.org',
161
+ '@type': 'SoftwareApplication',
162
+ name: 'Konverter BBCode Steam, Markdown dan HTML',
163
+ applicationCategory: 'DeveloperApplication',
164
+ operatingSystem: 'Any',
165
+ offers: { '@type': 'Offer', price: '0', priceCurrency: 'USD' }
166
+ },
167
+ {
168
+ '@context': 'https://schema.org',
169
+ '@type': 'FAQPage',
170
+ mainEntity: [
171
+ {
172
+ '@type': 'Question',
173
+ name: 'Apakah teks diunggah ke server?',
174
+ acceptedAnswer: {
175
+ '@type': 'Answer',
176
+ text: 'Tidak. Konversi berjalan sepenuhnya di browser Anda.'
177
+ }
178
+ }
179
+ ]
180
+ },
181
+ {
182
+ '@context': 'https://schema.org',
183
+ '@type': 'HowTo',
184
+ name: 'Cara mengonversi BBCode Steam, Markdown dan HTML',
185
+ step: [
186
+ {
187
+ '@type': 'HowToStep',
188
+ name: 'Tempel teks',
189
+ text: 'Tempel BBCode Steam, Markdown, atau HTML.'
190
+ }
191
+ ]
192
+ }
193
+ ],
194
+ bibliography: bibliographyEntries
195
+ };
@@ -0,0 +1,195 @@
1
+ import type { ToolLocaleContent } from '../../../types';
2
+ import type { SteamBbcodeTranslatorUI } from '../ui';
3
+ import { bibliographyEntries } from '../bibliography';
4
+
5
+ export const content: ToolLocaleContent<SteamBbcodeTranslatorUI> = {
6
+ slug: 'convertitore-bbcode-steam',
7
+ title: 'Convertitore BBCode Steam, Markdown e HTML',
8
+ description: 'Converti tra BBCode Steam, Markdown e HTML in tutte le direzioni con rilevamento automatico e anteprima dal vivo.',
9
+ ui: {
10
+ editorLabel: 'Incolla il tuo testo formattato',
11
+ editorHint: 'BBCode, Markdown o HTML vengono rilevati automaticamente.',
12
+ detectedLabel: 'Rilevato',
13
+ detectedEmpty: 'In attesa di testo',
14
+ bbcode: 'Steam BBCode',
15
+ markdown: 'Markdown',
16
+ html: 'HTML',
17
+ clear: 'Pulisci',
18
+ copy: 'Copia risultato',
19
+ copied: 'Copiato negli appunti',
20
+ characters: 'Caratteri',
21
+ blocks: 'Blocchi',
22
+ privacyNote: 'Funziona nel tuo browser. Nessun caricamento.',
23
+ persistenceNote: 'Ultima bozza salvata localmente',
24
+ previewLabel: 'Anteprima',
25
+ previewEmpty: 'L anteprima formattata apparirà qui.'
26
+ },
27
+ seo: [
28
+ {
29
+ type: 'title',
30
+ level: 2,
31
+ text: 'Perché le descrizioni degli store richiedono un convertitore'
32
+ },
33
+ {
34
+ type: 'paragraph',
35
+ html: 'Le descrizioni di Steam usano il BBCode. Cartelle stampa o siti web richiedono spesso Markdown o HTML. Questo strumento converte automaticamente tra i vari formati.'
36
+ },
37
+ {
38
+ type: 'title',
39
+ level: 2,
40
+ text: 'Tag e formati supportati'
41
+ },
42
+ {
43
+ type: 'paragraph',
44
+ html: 'Supporta titoli, grassetto, corsivo, link, elenchi puntati, citazioni e spoiler.'
45
+ },
46
+ {
47
+ type: 'stats',
48
+ columns: 4,
49
+ items: [
50
+ { label: 'Formati di input', value: '3' },
51
+ { label: 'Output per incolla', value: '2' },
52
+ { label: 'Livelli elenco', value: 'Annidati' },
53
+ { label: 'Elaborazione', value: 'Solo browser' }
54
+ ]
55
+ },
56
+ {
57
+ type: 'title',
58
+ level: 2,
59
+ text: 'Elenchi annidati preservati'
60
+ },
61
+ {
62
+ type: 'paragraph',
63
+ html: 'L albero di struttura integrato assicura che gli elementi figli rimangano correttamente annidati.'
64
+ },
65
+ {
66
+ type: 'table',
67
+ headers: ['Steam BBCode', 'Markdown', 'HTML'],
68
+ rows: [
69
+ ['[h1]Titolo[/h1]', '# Titolo', '&lt;h1&gt;Titolo&lt;/h1&gt;'],
70
+ ['[b]Importante[/b]', '**Importante**', '&lt;strong&gt;Importante&lt;/strong&gt;'],
71
+ ['[i]Nota[/i]', '*Nota*', '&lt;em&gt;Nota&lt;/em&gt;'],
72
+ ['[url=https://example.com]Link[/url]', '[Link](https://example.com)', '&lt;a href="https://example.com"&gt;Link&lt;/a&gt;'],
73
+ ['[list][*]Uno[*]Due[/list]', '- Uno\n- Due', '&lt;ul&gt;&lt;li&gt;Uno&lt;/li&gt;&lt;li&gt;Due&lt;/li&gt;&lt;/ul&gt;']
74
+ ]
75
+ },
76
+ {
77
+ type: 'title',
78
+ level: 2,
79
+ text: 'Differenze tra Markdown e HTML'
80
+ },
81
+ {
82
+ type: 'paragraph',
83
+ html: 'Se il Markdown non supporta nativamente il sottolineato, vengono inseriti elementi HTML inline.'
84
+ },
85
+ {
86
+ type: 'tip',
87
+ title: 'Controllo prima della pubblicazione',
88
+ html: 'Confronta l anteprima formattata con il documento originale prima di pubblicare.'
89
+ },
90
+ {
91
+ type: 'title',
92
+ level: 2,
93
+ text: 'Riservatezza dei dati'
94
+ },
95
+ {
96
+ type: 'paragraph',
97
+ html: 'Tutta l elaborazione avviene in locale nel tuo browser senza inviare dati esternamente.'
98
+ },
99
+ {
100
+ type: 'title',
101
+ level: 2,
102
+ text: 'Limitazioni'
103
+ },
104
+ {
105
+ type: 'proscons',
106
+ title: 'Considerazioni',
107
+ items: [
108
+ {
109
+ pro: 'Struttura degli elenchi mantenuta.',
110
+ con: 'I tag personalizzati richiedono una revisione manuale.'
111
+ }
112
+ ]
113
+ },
114
+ {
115
+ type: 'title',
116
+ level: 2,
117
+ text: 'Glossario dei formati'
118
+ },
119
+ {
120
+ type: 'glossary',
121
+ items: [
122
+ {
123
+ term: 'BBCode',
124
+ definition: 'Sintassi con parentesi quadre usata su Steam.'
125
+ },
126
+ {
127
+ term: 'Markdown',
128
+ definition: 'Sintassi di testo semplice e ben leggibile.'
129
+ },
130
+ {
131
+ term: 'HTML',
132
+ definition: 'Linguaggio di markup standard per il web.'
133
+ }
134
+ ]
135
+ }
136
+ ],
137
+ faqTitle: 'Domande frequenti sulla conversione',
138
+ faq: [
139
+ {
140
+ question: 'Il testo viene inviato a un server?',
141
+ answer: 'No. La conversione avviene interamente nel tuo browser.'
142
+ },
143
+ {
144
+ question: 'Gli elenchi annidati sono supportati?',
145
+ answer: 'Sì. La struttura viene analizzata prima di generare l output.'
146
+ }
147
+ ],
148
+ howTo: [
149
+ {
150
+ name: 'Incolla il testo',
151
+ text: 'Incolla BBCode Steam, Markdown o HTML.'
152
+ },
153
+ {
154
+ name: 'Rilevamento automatico',
155
+ text: 'Il sistema genererà subito gli altri due formati.'
156
+ }
157
+ ],
158
+ schemas: [
159
+ {
160
+ '@context': 'https://schema.org',
161
+ '@type': 'SoftwareApplication',
162
+ name: 'Convertitore BBCode Steam, Markdown e HTML',
163
+ applicationCategory: 'DeveloperApplication',
164
+ operatingSystem: 'Any',
165
+ offers: { '@type': 'Offer', price: '0', priceCurrency: 'EUR' }
166
+ },
167
+ {
168
+ '@context': 'https://schema.org',
169
+ '@type': 'FAQPage',
170
+ mainEntity: [
171
+ {
172
+ '@type': 'Question',
173
+ name: 'Il testo viene inviato a un server?',
174
+ acceptedAnswer: {
175
+ '@type': 'Answer',
176
+ text: 'No. La conversione avviene interamente nel tuo browser.'
177
+ }
178
+ }
179
+ ]
180
+ },
181
+ {
182
+ '@context': 'https://schema.org',
183
+ '@type': 'HowTo',
184
+ name: 'Come convertire BBCode Steam, Markdown e HTML',
185
+ step: [
186
+ {
187
+ '@type': 'HowToStep',
188
+ name: 'Incolla il testo',
189
+ text: 'Incolla BBCode Steam, Markdown o HTML.'
190
+ }
191
+ ]
192
+ }
193
+ ],
194
+ bibliography: bibliographyEntries
195
+ };
@@ -0,0 +1,195 @@
1
+ import type { ToolLocaleContent } from '../../../types';
2
+ import type { SteamBbcodeTranslatorUI } from '../ui';
3
+ import { bibliographyEntries } from '../bibliography';
4
+
5
+ export const content: ToolLocaleContent<SteamBbcodeTranslatorUI> = {
6
+ slug: 'steam-bbcode-translator',
7
+ title: 'Steam BBCode, Markdown, HTML 相互変換ツール',
8
+ description: 'Steam BBCode、Markdown、HTMLを自動判別し、リアルタイムで相互変換・プレビュー表示します。',
9
+ ui: {
10
+ editorLabel: 'テキストを貼り付け',
11
+ editorHint: 'BBCode、Markdown、HTMLが自動的に判別されます。',
12
+ detectedLabel: '検出形式',
13
+ detectedEmpty: 'テキスト待機中',
14
+ bbcode: 'Steam BBCode',
15
+ markdown: 'Markdown',
16
+ html: 'HTML',
17
+ clear: 'クリア',
18
+ copy: '出力結果をコピー',
19
+ copied: 'クリップボードにコピーしました',
20
+ characters: '文字数',
21
+ blocks: 'ブロック数',
22
+ privacyNote: 'すべての処理はブラウザ上で完結します。',
23
+ persistenceNote: '下書きはローカルに保存されます',
24
+ previewLabel: 'プレビュー',
25
+ previewEmpty: 'ここにプレビューが表示されます。'
26
+ },
27
+ seo: [
28
+ {
29
+ type: 'title',
30
+ level: 2,
31
+ text: 'ストア説明文におけるマークアップ変換の必要性'
32
+ },
33
+ {
34
+ type: 'paragraph',
35
+ html: 'Steamストアページでは独自のBBCodeが使用されますが、プレスキットやWebサイトではMarkdownやHTMLが一般的です。本ツールは貼り付けられたテキストを解析し、他の2つのフォーマットへ自動変換します。'
36
+ },
37
+ {
38
+ type: 'title',
39
+ level: 2,
40
+ text: '対応しているタグと構造'
41
+ },
42
+ {
43
+ type: 'paragraph',
44
+ html: '見出し、太字、斜体、リンク、箇条書き、引用、スポイラーの変換に対応しています。'
45
+ },
46
+ {
47
+ type: 'stats',
48
+ columns: 4,
49
+ items: [
50
+ { label: '入力フォーマット', value: '3' },
51
+ { label: '同時出力数', value: '2' },
52
+ { label: 'リスト構造', value: 'ネスト対応' },
53
+ { label: 'データ処理', value: 'ローカル完結' }
54
+ ]
55
+ },
56
+ {
57
+ type: 'title',
58
+ level: 2,
59
+ text: '階層リストの構造維持'
60
+ },
61
+ {
62
+ type: 'paragraph',
63
+ html: '単なる文字列置換ではなく軽量な木構造として解析するため、入れ子になったリストの階層関係が維持されます。'
64
+ },
65
+ {
66
+ type: 'table',
67
+ headers: ['Steam BBCode', 'Markdown', 'HTML'],
68
+ rows: [
69
+ ['[h1]タイトル[/h1]', '# タイトル', '&lt;h1&gt;タイトル&lt;/h1&gt;'],
70
+ ['[b]重要[/b]', '**重要**', '&lt;strong&gt;重要&lt;/strong&gt;'],
71
+ ['[i]注記[/i]', '*注記*', '&lt;em&gt;注記&lt;/em&gt;'],
72
+ ['[url=https://example.com]リンク[/url]', '[リンク](https://example.com)', '&lt;a href="https://example.com"&gt;リンク&lt;/a&gt;'],
73
+ ['[list][*]項目1[*]項目2[/list]', '- 項目1\n- 項目2', '&lt;ul&gt;&lt;li&gt;項目1&lt;/li&gt;&lt;li&gt;項目2&lt;/li&gt;&lt;/ul&gt;']
74
+ ]
75
+ },
76
+ {
77
+ type: 'title',
78
+ level: 2,
79
+ text: 'MarkdownとHTMLの変換差分'
80
+ },
81
+ {
82
+ type: 'paragraph',
83
+ html: 'Markdownで下線などがサポートされていない場合、互換性のためにインラインHTMLタグが補完されます。'
84
+ },
85
+ {
86
+ type: 'tip',
87
+ title: '公開前の事前確認',
88
+ html: 'SteamやWebサイトへ掲載する前に、プレビュー画面でレイアウトを確認してください。'
89
+ },
90
+ {
91
+ type: 'title',
92
+ level: 2,
93
+ text: 'プライバシーと安全性'
94
+ },
95
+ {
96
+ type: 'paragraph',
97
+ html: 'テキストデータは外部サーバーへ送信されず、すべてお使いのブラウザ内で処理されます。'
98
+ },
99
+ {
100
+ type: 'title',
101
+ level: 2,
102
+ text: '変換時の注意点'
103
+ },
104
+ {
105
+ type: 'proscons',
106
+ title: '変換の特徴',
107
+ items: [
108
+ {
109
+ pro: 'ネスト構造が保持されます。',
110
+ con: '独自のカスタムタグは手動確認が必要です。'
111
+ }
112
+ ]
113
+ },
114
+ {
115
+ type: 'title',
116
+ level: 2,
117
+ text: '用語集'
118
+ },
119
+ {
120
+ type: 'glossary',
121
+ items: [
122
+ {
123
+ term: 'BBCode',
124
+ definition: 'Steam等で使用される角括弧を用いたタグ記法。'
125
+ },
126
+ {
127
+ term: 'Markdown',
128
+ definition: '可読性の高い軽量マークアップ言語。'
129
+ },
130
+ {
131
+ term: 'HTML',
132
+ definition: 'Webページを記述するための標準言語。'
133
+ }
134
+ ]
135
+ }
136
+ ],
137
+ faqTitle: 'よくある質問',
138
+ faq: [
139
+ {
140
+ question: '入力したテキストはサーバーに送信されますか?',
141
+ answer: 'いいえ。すべての処理はブラウザ内でローカルに実行されます。'
142
+ },
143
+ {
144
+ question: '入れ子になったリストはサポートされていますか?',
145
+ answer: 'はい。階層構造を解析した上で変換を行います。'
146
+ }
147
+ ],
148
+ howTo: [
149
+ {
150
+ name: 'テキストを貼り付け',
151
+ text: 'エディタにBBCode、Markdown、HTMLのいずれかを貼り付けます。'
152
+ },
153
+ {
154
+ name: '自動変換',
155
+ text: '判定された形式以外の2つのフォーマットが即座に生成されます。'
156
+ }
157
+ ],
158
+ schemas: [
159
+ {
160
+ '@context': 'https://schema.org',
161
+ '@type': 'SoftwareApplication',
162
+ name: 'Steam BBCode, Markdown, HTML 相互変換ツール',
163
+ applicationCategory: 'DeveloperApplication',
164
+ operatingSystem: 'Any',
165
+ offers: { '@type': 'Offer', price: '0', priceCurrency: 'JPY' }
166
+ },
167
+ {
168
+ '@context': 'https://schema.org',
169
+ '@type': 'FAQPage',
170
+ mainEntity: [
171
+ {
172
+ '@type': 'Question',
173
+ name: '入力したテキストはサーバーに送信されますか?',
174
+ acceptedAnswer: {
175
+ '@type': 'Answer',
176
+ text: 'いいえ。すべての処理はブラウザ内でローカルに実行されます。'
177
+ }
178
+ }
179
+ ]
180
+ },
181
+ {
182
+ '@context': 'https://schema.org',
183
+ '@type': 'HowTo',
184
+ name: 'Steam BBCode、Markdown、HTMLの変換手順',
185
+ step: [
186
+ {
187
+ '@type': 'HowToStep',
188
+ name: 'テキストを貼り付け',
189
+ text: 'エディタにBBCode、Markdown、HTMLのいずれかを貼り付けます。'
190
+ }
191
+ ]
192
+ }
193
+ ],
194
+ bibliography: bibliographyEntries
195
+ };