We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cf306b3 commit 17d24b3Copy full SHA for 17d24b3
.github/scripts/sync-untranslated-issue.mjs
@@ -73,6 +73,11 @@ function generatePreviewPath(filepath) {
73
.replace(/\/README\.md$/, '') // READMEの場合はディレクトリのみ
74
.replace(/\.md$/, '');
75
76
+ // reference/press-kit の特殊なパス変換
77
+ if (basePath === 'reference/press-kit') {
78
+ return 'press-kit';
79
+ }
80
+
81
// チュートリアルの特殊なパス変換
82
if (basePath.startsWith('tutorials/')) {
83
// tutorials/first-app/intro -> tutorials/first-app
0 commit comments