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 317026dCopy full SHA for 317026d
.github/scripts/sync-untranslated-issue.mjs
@@ -73,6 +73,14 @@ function generatePreviewPath(filepath) {
73
.replace(/\/README\.md$/, '') // READMEの場合はディレクトリのみ
74
.replace(/\.md$/, '');
75
76
+ // reference 配下の特殊なパス変換
77
+ if (basePath === 'reference/press-kit') {
78
+ return 'press-kit';
79
+ }
80
+ if (basePath === 'reference/roadmap') {
81
+ return 'roadmap';
82
83
+
84
// チュートリアルの特殊なパス変換
85
if (basePath.startsWith('tutorials/')) {
86
// tutorials/first-app/intro -> tutorials/first-app
0 commit comments