openfree commited on
Commit
51025e7
·
verified ·
1 Parent(s): 4f439de

Update index.html

Browse files
Files changed (1) hide show
  1. index.html +13 -2
index.html CHANGED
@@ -340,7 +340,7 @@
340
  "aiqtech/FLUX-Ghibli-Studio-LoRA": "Image Gen",
341
  "aiqtech/flxgif": "Image Gen",
342
  "aiqtech/imaginpaint": "Image Edit",
343
-
344
 
345
  const newProjects = [
346
  "fantos/Panorama",
@@ -368,7 +368,18 @@ const bestProjects = [
368
  "ginigen/Flux-LayerDiffuse"
369
  ];
370
 
371
- // 프로젝트 배열 생성 부분 수정
 
 
 
 
 
 
 
 
 
 
 
372
  const keys = Object.keys(projectList);
373
  const projects = keys.map(key => {
374
  const primaryCategory = customCategories[key] || "Image Gen";
 
340
  "aiqtech/FLUX-Ghibli-Studio-LoRA": "Image Gen",
341
  "aiqtech/flxgif": "Image Gen",
342
  "aiqtech/imaginpaint": "Image Edit",
343
+ };
344
 
345
  const newProjects = [
346
  "fantos/Panorama",
 
368
  "ginigen/Flux-LayerDiffuse"
369
  ];
370
 
371
+
372
+ // URL 변환 함수
373
+ function transformUrl(url) {
374
+ const prefix = "https://huggingface.co/spaces/";
375
+ if (url.startsWith(prefix)) {
376
+ const rest = url.substring(prefix.length);
377
+ return "https://" + rest.replace("/", "-") + ".hf.space";
378
+ }
379
+ return url;
380
+ }
381
+
382
+ // 프로젝트 배열 생성
383
  const keys = Object.keys(projectList);
384
  const projects = keys.map(key => {
385
  const primaryCategory = customCategories[key] || "Image Gen";