@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.
- package/package.json +1 -1
- package/src/category/index.ts +2 -1
- package/src/entries.ts +2 -0
- package/src/index.ts +1 -0
- package/src/tests/locale_completeness.test.ts +2 -2
- package/src/tests/tool_validation.test.ts +2 -2
- package/src/tool/steamBbcodeTranslator/app-client.ts +125 -0
- package/src/tool/steamBbcodeTranslator/bbcode-parser.ts +110 -0
- package/src/tool/steamBbcodeTranslator/bibliography.astro +6 -0
- package/src/tool/steamBbcodeTranslator/bibliography.ts +14 -0
- package/src/tool/steamBbcodeTranslator/component.astro +83 -0
- package/src/tool/steamBbcodeTranslator/entry.ts +28 -0
- package/src/tool/steamBbcodeTranslator/html-parser.ts +42 -0
- package/src/tool/steamBbcodeTranslator/html-renderer.ts +71 -0
- package/src/tool/steamBbcodeTranslator/i18n/de.ts +207 -0
- package/src/tool/steamBbcodeTranslator/i18n/en.ts +236 -0
- package/src/tool/steamBbcodeTranslator/i18n/es.ts +207 -0
- package/src/tool/steamBbcodeTranslator/i18n/fr.ts +195 -0
- package/src/tool/steamBbcodeTranslator/i18n/id.ts +195 -0
- package/src/tool/steamBbcodeTranslator/i18n/it.ts +195 -0
- package/src/tool/steamBbcodeTranslator/i18n/ja.ts +195 -0
- package/src/tool/steamBbcodeTranslator/i18n/ko.ts +195 -0
- package/src/tool/steamBbcodeTranslator/i18n/nl.ts +195 -0
- package/src/tool/steamBbcodeTranslator/i18n/pl.ts +195 -0
- package/src/tool/steamBbcodeTranslator/i18n/pt.ts +195 -0
- package/src/tool/steamBbcodeTranslator/i18n/ru.ts +195 -0
- package/src/tool/steamBbcodeTranslator/i18n/sv.ts +195 -0
- package/src/tool/steamBbcodeTranslator/i18n/tr.ts +195 -0
- package/src/tool/steamBbcodeTranslator/i18n/zh.ts +195 -0
- package/src/tool/steamBbcodeTranslator/index.ts +12 -0
- package/src/tool/steamBbcodeTranslator/logic.test.ts +41 -0
- package/src/tool/steamBbcodeTranslator/logic.ts +96 -0
- package/src/tool/steamBbcodeTranslator/markdown-parser.ts +115 -0
- package/src/tool/steamBbcodeTranslator/markdown-renderer.ts +85 -0
- package/src/tool/steamBbcodeTranslator/seo.astro +15 -0
- package/src/tool/steamBbcodeTranslator/steam-bbcode-translator.css +392 -0
- package/src/tool/steamBbcodeTranslator/storage.ts +30 -0
- package/src/tool/steamBbcodeTranslator/types.ts +36 -0
- package/src/tool/steamBbcodeTranslator/ui.ts +18 -0
- 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: '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]', '# タイトル', '<h1>タイトル</h1>'],
|
|
70
|
+
['[b]重要[/b]', '**重要**', '<strong>重要</strong>'],
|
|
71
|
+
['[i]注記[/i]', '*注記*', '<em>注記</em>'],
|
|
72
|
+
['[url=https://example.com]リンク[/url]', '[リンク](https://example.com)', '<a href="https://example.com">リンク</a>'],
|
|
73
|
+
['[list][*]項目1[*]項目2[/list]', '- 項目1\n- 項目2', '<ul><li>項目1</li><li>項目2</li></ul>']
|
|
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
|
+
};
|
|
@@ -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 구문이 사용되지만 프레스 킷이나 웹사이트에서는 Markdown이나 HTML이 사용됩니다. 본 도구는 입력된 텍스트를 감지하여 다른 두 포맷으로 자동 변환해 줍니다.'
|
|
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]', '# 제목', '<h1>제목</h1>'],
|
|
70
|
+
['[b]강조[/b]', '**강조**', '<strong>강조</strong>'],
|
|
71
|
+
['[i]참고[/i]', '*참고*', '<em>참고</em>'],
|
|
72
|
+
['[url=https://example.com]링크[/url]', '[링크](https://example.com)', '<a href="https://example.com">링크</a>'],
|
|
73
|
+
['[list][*]항목1[*]항목2[/list]', '- 항목1\n- 항목2', '<ul><li>항목1</li><li>항목2</li></ul>']
|
|
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: '상점이나 웹사이트에 적용하기 전에 미리보기 화면에서 레이아웃을 검토하세요.'
|
|
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: '웹문서를 작성하기 위한 표준 마크업 언어.'
|
|
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: '나머지 두 포맷이 즉시 생성됩니다.'
|
|
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: 'KRW' }
|
|
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
|
+
};
|
|
@@ -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-omzetter',
|
|
7
|
+
title: 'Steam BBCode, Markdown en HTML Omzetter',
|
|
8
|
+
description: 'Converteer tussen Steam BBCode, Markdown en HTML in beide richtingen met automatische syntaxisdetectie en live voorbeeld.',
|
|
9
|
+
ui: {
|
|
10
|
+
editorLabel: 'Plak uw opgemaakte tekst',
|
|
11
|
+
editorHint: 'BBCode, Markdown of HTML wordt automatisch gedetecteerd.',
|
|
12
|
+
detectedLabel: 'Gedetecteerd',
|
|
13
|
+
detectedEmpty: 'Wachten op tekst',
|
|
14
|
+
bbcode: 'Steam BBCode',
|
|
15
|
+
markdown: 'Markdown',
|
|
16
|
+
html: 'HTML',
|
|
17
|
+
clear: 'Wis',
|
|
18
|
+
copy: 'Kopieer resultaat',
|
|
19
|
+
copied: 'Gekopieerd naar klembord',
|
|
20
|
+
characters: 'Tekens',
|
|
21
|
+
blocks: 'Blokken',
|
|
22
|
+
privacyNote: 'Werkt in uw browser. Niets wordt geüpload.',
|
|
23
|
+
persistenceNote: 'Laatste concept lokaal opgeslagen',
|
|
24
|
+
previewLabel: 'Voorbeeld',
|
|
25
|
+
previewEmpty: 'Uw geformatteerde voorbeeld verschijnt hier.'
|
|
26
|
+
},
|
|
27
|
+
seo: [
|
|
28
|
+
{
|
|
29
|
+
type: 'title',
|
|
30
|
+
level: 2,
|
|
31
|
+
text: 'Waarom winkelbeschrijvingen een omzetter nodig hebben'
|
|
32
|
+
},
|
|
33
|
+
{
|
|
34
|
+
type: 'paragraph',
|
|
35
|
+
html: 'Steam winkelpagina s gebruiken BBCode. Perskits of documentatiewebsites verwachten vaak Markdown of HTML. Deze tool converteert automatisch tussen de drie formaten.'
|
|
36
|
+
},
|
|
37
|
+
{
|
|
38
|
+
type: 'title',
|
|
39
|
+
level: 2,
|
|
40
|
+
text: 'Ondersteunde opmaak'
|
|
41
|
+
},
|
|
42
|
+
{
|
|
43
|
+
type: 'paragraph',
|
|
44
|
+
html: 'Ondersteunt koppen, vet, cursief, links, lijsten, citaten en spoilers.'
|
|
45
|
+
},
|
|
46
|
+
{
|
|
47
|
+
type: 'stats',
|
|
48
|
+
columns: 4,
|
|
49
|
+
items: [
|
|
50
|
+
{ label: 'Invoerformaten', value: '3' },
|
|
51
|
+
{ label: 'Uitvoeren per plak', value: '2' },
|
|
52
|
+
{ label: 'Lijstdiepte', value: 'Genoest' },
|
|
53
|
+
{ label: 'Verwerking', value: 'Alleen browser' }
|
|
54
|
+
]
|
|
55
|
+
},
|
|
56
|
+
{
|
|
57
|
+
type: 'title',
|
|
58
|
+
level: 2,
|
|
59
|
+
text: 'Nesten van lijsten blijft behouden'
|
|
60
|
+
},
|
|
61
|
+
{
|
|
62
|
+
type: 'paragraph',
|
|
63
|
+
html: 'Een structuurboom zorgt ervoor dat sublijsten netjes binnen het hoofdelement blijven.'
|
|
64
|
+
},
|
|
65
|
+
{
|
|
66
|
+
type: 'table',
|
|
67
|
+
headers: ['Steam BBCode', 'Markdown', 'HTML'],
|
|
68
|
+
rows: [
|
|
69
|
+
['[h1]Titel[/h1]', '# Titel', '<h1>Titel</h1>'],
|
|
70
|
+
['[b]Belangrijk[/b]', '**Belangrijk**', '<strong>Belangrijk</strong>'],
|
|
71
|
+
['[i]Notitie[/i]', '*Notitie*', '<em>Notitie</em>'],
|
|
72
|
+
['[url=https://example.com]Link[/url]', '[Link](https://example.com)', '<a href="https://example.com">Link</a>'],
|
|
73
|
+
['[list][*]Een[*]Twee[/list]', '- Een\n- Twee', '<ul><li>Een</li><li>Twee</li></ul>']
|
|
74
|
+
]
|
|
75
|
+
},
|
|
76
|
+
{
|
|
77
|
+
type: 'title',
|
|
78
|
+
level: 2,
|
|
79
|
+
text: 'Verschillen tussen Markdown en HTML'
|
|
80
|
+
},
|
|
81
|
+
{
|
|
82
|
+
type: 'paragraph',
|
|
83
|
+
html: 'Wanneer Markdown geen onderstreping ondersteunt, gebruikt de omzetter inline HTML.'
|
|
84
|
+
},
|
|
85
|
+
{
|
|
86
|
+
type: 'tip',
|
|
87
|
+
title: 'Controle voor publicatie',
|
|
88
|
+
html: 'Vergelijk het geformatteerde voorbeeld met uw bronbestand voordat u publiceert.'
|
|
89
|
+
},
|
|
90
|
+
{
|
|
91
|
+
type: 'title',
|
|
92
|
+
level: 2,
|
|
93
|
+
text: 'Privacy van uw teksten'
|
|
94
|
+
},
|
|
95
|
+
{
|
|
96
|
+
type: 'paragraph',
|
|
97
|
+
html: 'Alle verwerking vindt lokaal plaats in uw browser.'
|
|
98
|
+
},
|
|
99
|
+
{
|
|
100
|
+
type: 'title',
|
|
101
|
+
level: 2,
|
|
102
|
+
text: 'Beperkingen'
|
|
103
|
+
},
|
|
104
|
+
{
|
|
105
|
+
type: 'proscons',
|
|
106
|
+
title: 'Aandachtspunten',
|
|
107
|
+
items: [
|
|
108
|
+
{
|
|
109
|
+
pro: 'Geordende lijststructuur.',
|
|
110
|
+
con: 'Aangepaste tags vereisen handmatige controle.'
|
|
111
|
+
}
|
|
112
|
+
]
|
|
113
|
+
},
|
|
114
|
+
{
|
|
115
|
+
type: 'title',
|
|
116
|
+
level: 2,
|
|
117
|
+
text: 'Begrippenlijst'
|
|
118
|
+
},
|
|
119
|
+
{
|
|
120
|
+
type: 'glossary',
|
|
121
|
+
items: [
|
|
122
|
+
{
|
|
123
|
+
term: 'BBCode',
|
|
124
|
+
definition: 'Opmaaksyntaxis met vierkante haakjes voor Steam.'
|
|
125
|
+
},
|
|
126
|
+
{
|
|
127
|
+
term: 'Markdown',
|
|
128
|
+
definition: 'Lichte en goed leesbare tekstopmaak.'
|
|
129
|
+
},
|
|
130
|
+
{
|
|
131
|
+
term: 'HTML',
|
|
132
|
+
definition: 'Standaard opmaaktaal voor het web.'
|
|
133
|
+
}
|
|
134
|
+
]
|
|
135
|
+
}
|
|
136
|
+
],
|
|
137
|
+
faqTitle: 'Veelgestelde vragen',
|
|
138
|
+
faq: [
|
|
139
|
+
{
|
|
140
|
+
question: 'Wordt mijn tekst naar een server gestuurd?',
|
|
141
|
+
answer: 'Nee. De conversie gebeurt volledig lokaal in uw browser.'
|
|
142
|
+
},
|
|
143
|
+
{
|
|
144
|
+
question: 'Worden geneste lijsten ondersteund?',
|
|
145
|
+
answer: 'Ja. De lijststructuur wordt geanalyseerd voor de omzetting.'
|
|
146
|
+
}
|
|
147
|
+
],
|
|
148
|
+
howTo: [
|
|
149
|
+
{
|
|
150
|
+
name: 'Plak tekst',
|
|
151
|
+
text: 'Plak Steam BBCode, Markdown of HTML.'
|
|
152
|
+
},
|
|
153
|
+
{
|
|
154
|
+
name: 'Automatische omzetting',
|
|
155
|
+
text: 'De andere twee formaten worden direct gegeneerd.'
|
|
156
|
+
}
|
|
157
|
+
],
|
|
158
|
+
schemas: [
|
|
159
|
+
{
|
|
160
|
+
'@context': 'https://schema.org',
|
|
161
|
+
'@type': 'SoftwareApplication',
|
|
162
|
+
name: 'Steam BBCode, Markdown en HTML Omzetter',
|
|
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: 'Wordt mijn tekst naar een server gestuurd?',
|
|
174
|
+
acceptedAnswer: {
|
|
175
|
+
'@type': 'Answer',
|
|
176
|
+
text: 'Nee. De conversie gebeurt volledig lokaal in uw browser.'
|
|
177
|
+
}
|
|
178
|
+
}
|
|
179
|
+
]
|
|
180
|
+
},
|
|
181
|
+
{
|
|
182
|
+
'@context': 'https://schema.org',
|
|
183
|
+
'@type': 'HowTo',
|
|
184
|
+
name: 'Hoe Steam BBCode, Markdown en HTML om te zetten',
|
|
185
|
+
step: [
|
|
186
|
+
{
|
|
187
|
+
'@type': 'HowToStep',
|
|
188
|
+
name: 'Plak tekst',
|
|
189
|
+
text: 'Plak Steam BBCode, Markdown of HTML.'
|
|
190
|
+
}
|
|
191
|
+
]
|
|
192
|
+
}
|
|
193
|
+
],
|
|
194
|
+
bibliography: bibliographyEntries
|
|
195
|
+
};
|