@jjlmoya/utils-games-development 1.53.0 → 1.54.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 (40) hide show
  1. package/package.json +1 -1
  2. package/src/category/index.ts +2 -1
  3. package/src/entries.ts +2 -0
  4. package/src/index.ts +1 -0
  5. package/src/tests/locale_completeness.test.ts +2 -2
  6. package/src/tests/tool_validation.test.ts +2 -2
  7. package/src/tool/steamBbcodeTranslator/app-client.ts +125 -0
  8. package/src/tool/steamBbcodeTranslator/bbcode-parser.ts +110 -0
  9. package/src/tool/steamBbcodeTranslator/bibliography.astro +6 -0
  10. package/src/tool/steamBbcodeTranslator/bibliography.ts +14 -0
  11. package/src/tool/steamBbcodeTranslator/component.astro +83 -0
  12. package/src/tool/steamBbcodeTranslator/entry.ts +28 -0
  13. package/src/tool/steamBbcodeTranslator/html-parser.ts +42 -0
  14. package/src/tool/steamBbcodeTranslator/html-renderer.ts +71 -0
  15. package/src/tool/steamBbcodeTranslator/i18n/de.ts +207 -0
  16. package/src/tool/steamBbcodeTranslator/i18n/en.ts +236 -0
  17. package/src/tool/steamBbcodeTranslator/i18n/es.ts +207 -0
  18. package/src/tool/steamBbcodeTranslator/i18n/fr.ts +195 -0
  19. package/src/tool/steamBbcodeTranslator/i18n/id.ts +195 -0
  20. package/src/tool/steamBbcodeTranslator/i18n/it.ts +195 -0
  21. package/src/tool/steamBbcodeTranslator/i18n/ja.ts +195 -0
  22. package/src/tool/steamBbcodeTranslator/i18n/ko.ts +195 -0
  23. package/src/tool/steamBbcodeTranslator/i18n/nl.ts +195 -0
  24. package/src/tool/steamBbcodeTranslator/i18n/pl.ts +195 -0
  25. package/src/tool/steamBbcodeTranslator/i18n/pt.ts +195 -0
  26. package/src/tool/steamBbcodeTranslator/i18n/ru.ts +195 -0
  27. package/src/tool/steamBbcodeTranslator/i18n/sv.ts +195 -0
  28. package/src/tool/steamBbcodeTranslator/i18n/tr.ts +195 -0
  29. package/src/tool/steamBbcodeTranslator/i18n/zh.ts +195 -0
  30. package/src/tool/steamBbcodeTranslator/index.ts +12 -0
  31. package/src/tool/steamBbcodeTranslator/logic.test.ts +41 -0
  32. package/src/tool/steamBbcodeTranslator/logic.ts +96 -0
  33. package/src/tool/steamBbcodeTranslator/markdown-parser.ts +115 -0
  34. package/src/tool/steamBbcodeTranslator/markdown-renderer.ts +85 -0
  35. package/src/tool/steamBbcodeTranslator/seo.astro +15 -0
  36. package/src/tool/steamBbcodeTranslator/steam-bbcode-translator.css +392 -0
  37. package/src/tool/steamBbcodeTranslator/storage.ts +30 -0
  38. package/src/tool/steamBbcodeTranslator/types.ts +36 -0
  39. package/src/tool/steamBbcodeTranslator/ui.ts +18 -0
  40. package/src/tools.ts +2 -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: 'convertisseur-bbcode-steam',
7
+ title: 'Convertisseur BBCode Steam, Markdown et HTML',
8
+ description: 'Convertissez le BBCode Steam, Markdown et HTML dans toutes les directions avec détection automatique et aperçu en direct.',
9
+ ui: {
10
+ editorLabel: 'Collez votre texte',
11
+ editorHint: 'BBCode, Markdown ou HTML est détecté automatiquement.',
12
+ detectedLabel: 'Détecté',
13
+ detectedEmpty: 'En attente de texte',
14
+ bbcode: 'Steam BBCode',
15
+ markdown: 'Markdown',
16
+ html: 'HTML',
17
+ clear: 'Effacer',
18
+ copy: 'Copier le résultat',
19
+ copied: 'Copié dans le presse-papiers',
20
+ characters: 'Caractères',
21
+ blocks: 'Blocs',
22
+ privacyNote: 'Exécution locale dans le navigateur. Aucun envoi.',
23
+ persistenceNote: 'Dernier brouillon sauvegardé localement',
24
+ previewLabel: 'Aperçu',
25
+ previewEmpty: 'Votre aperçu formaté apparaîtra ici.'
26
+ },
27
+ seo: [
28
+ {
29
+ type: 'title',
30
+ level: 2,
31
+ text: 'Pourquoi utiliser un convertisseur de balises'
32
+ },
33
+ {
34
+ type: 'paragraph',
35
+ html: 'Les descriptions de boutiques Steam utilisent le BBCode. Les kits de presse et sites web préfèrent souvent le Markdown ou le HTML. Ce convertisseur génère automatiquement les autres formats.'
36
+ },
37
+ {
38
+ type: 'title',
39
+ level: 2,
40
+ text: 'Balises et formats pris en charge'
41
+ },
42
+ {
43
+ type: 'paragraph',
44
+ html: 'L outil gère les titres, le gras, l italique, les liens, les listes, les citations et les spoilers.'
45
+ },
46
+ {
47
+ type: 'stats',
48
+ columns: 4,
49
+ items: [
50
+ { label: 'Formats en entrée', value: '3' },
51
+ { label: 'Sorties générées', value: '2' },
52
+ { label: 'Profondeur de liste', value: 'Imbriquée' },
53
+ { label: 'Traitement', value: 'Local' }
54
+ ]
55
+ },
56
+ {
57
+ type: 'title',
58
+ level: 2,
59
+ text: 'Conservation des listes imbriquées'
60
+ },
61
+ {
62
+ type: 'paragraph',
63
+ html: 'Un arbre de structure permet de conserver l imbrication exacte des sous-listes lors de la conversion.'
64
+ },
65
+ {
66
+ type: 'table',
67
+ headers: ['Steam BBCode', 'Markdown', 'HTML'],
68
+ rows: [
69
+ ['[h1]Titre[/h1]', '# Titre', '&lt;h1&gt;Titre&lt;/h1&gt;'],
70
+ ['[b]Important[/b]', '**Important**', '&lt;strong&gt;Important&lt;/strong&gt;'],
71
+ ['[i]Note[/i]', '*Note*', '&lt;em&gt;Note&lt;/em&gt;'],
72
+ ['[url=https://example.com]Lien[/url]', '[Lien](https://example.com)', '&lt;a href="https://example.com"&gt;Lien&lt;/a&gt;'],
73
+ ['[list][*]Un[*]Deux[/list]', '- Un\n- Deux', '&lt;ul&gt;&lt;li&gt;Un&lt;/li&gt;&lt;li&gt;Deux&lt;/li&gt;&lt;/ul&gt;']
74
+ ]
75
+ },
76
+ {
77
+ type: 'title',
78
+ level: 2,
79
+ text: 'Différences Markdown et HTML'
80
+ },
81
+ {
82
+ type: 'paragraph',
83
+ html: 'Le Markdown ne prenant pas en charge le soulignement natif, du HTML en ligne est inséré si nécessaire.'
84
+ },
85
+ {
86
+ type: 'tip',
87
+ title: 'Vérification avant publication',
88
+ html: 'Comparez l aperçu avec le document d origine avant de publier.'
89
+ },
90
+ {
91
+ type: 'title',
92
+ level: 2,
93
+ text: 'Protection de vos données'
94
+ },
95
+ {
96
+ type: 'paragraph',
97
+ html: 'Tout le traitement est exécuté localement dans votre navigateur.'
98
+ },
99
+ {
100
+ type: 'title',
101
+ level: 2,
102
+ text: 'Limites de la conversion'
103
+ },
104
+ {
105
+ type: 'proscons',
106
+ title: 'Points à retenir',
107
+ items: [
108
+ {
109
+ pro: 'Gestion structurée des listes.',
110
+ con: 'Les balises spécifiques non standard nécessitent une retouche.'
111
+ }
112
+ ]
113
+ },
114
+ {
115
+ type: 'title',
116
+ level: 2,
117
+ text: 'Glossaire'
118
+ },
119
+ {
120
+ type: 'glossary',
121
+ items: [
122
+ {
123
+ term: 'BBCode',
124
+ definition: 'Format basé sur des crochets utilisé par Steam.'
125
+ },
126
+ {
127
+ term: 'Markdown',
128
+ definition: 'Format texte lisible et léger.'
129
+ },
130
+ {
131
+ term: 'HTML',
132
+ definition: 'Langage de balisage web standard.'
133
+ }
134
+ ]
135
+ }
136
+ ],
137
+ faqTitle: 'Foire aux questions sur la conversion',
138
+ faq: [
139
+ {
140
+ question: 'Mes données sont-elles envoyées sur un serveur ?',
141
+ answer: 'Non. La conversion est effectuée entièrement dans votre navigateur.'
142
+ },
143
+ {
144
+ question: 'Les listes imbriquées sont-elles gérées ?',
145
+ answer: 'Oui. La structure est conservée.'
146
+ }
147
+ ],
148
+ howTo: [
149
+ {
150
+ name: 'Coller le texte',
151
+ text: 'Collez du BBCode, Markdown ou HTML.'
152
+ },
153
+ {
154
+ name: 'Conversion automatique',
155
+ text: 'Les deux autres formats sont générés immédiatement.'
156
+ }
157
+ ],
158
+ schemas: [
159
+ {
160
+ '@context': 'https://schema.org',
161
+ '@type': 'SoftwareApplication',
162
+ name: 'Convertisseur BBCode Steam, Markdown et 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: 'Mes données sont-elles envoyées sur un serveur ?',
174
+ acceptedAnswer: {
175
+ '@type': 'Answer',
176
+ text: 'Non. La conversion est effectuée entièrement dans votre navigateur.'
177
+ }
178
+ }
179
+ ]
180
+ },
181
+ {
182
+ '@context': 'https://schema.org',
183
+ '@type': 'HowTo',
184
+ name: 'Comment convertir BBCode Steam, Markdown et HTML',
185
+ step: [
186
+ {
187
+ '@type': 'HowToStep',
188
+ name: 'Coller le texte',
189
+ text: 'Collez du BBCode, Markdown ou 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: '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
+ };