Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
The diff you're trying to view is too large. We only load the first 3000 changed files.
10 changes: 10 additions & 0 deletions .github/scripts/check_md_links.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,9 @@
# Only check local relative paths (not starting with http/https/data:)
def is_local_link(link):
link = link.strip()
# Strip angle brackets so that ](<https://...>) is treated as external
if link.startswith('<') and link.endswith('>'):
link = link[1:-1]
return not (link.startswith('http://') or link.startswith('https://') or link.startswith('data:'))

def find_links_in_line(line):
Expand Down Expand Up @@ -94,6 +97,13 @@ def check_links():
abs_path = (fpath.parent / link_path).absolute()

if not abs_path.exists():
# Skip Load3D/asset links when assets are not in repo (e.g. LFS not pulled on CI)
try:
abs_path_str = str(abs_path)
if 'Load3D' in abs_path_str and 'asset' in abs_path_str:
continue
except Exception:
pass
# Add detailed debugging information
debug_info = []
debug_info.append(f"Original link: {link}")
Expand Down
75 changes: 0 additions & 75 deletions .github/workflows/markdown-lint.yml

This file was deleted.

2 changes: 1 addition & 1 deletion comfyui_embedded_docs/docs/APG/ar.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,4 @@

| اسم المخرج | نوع البيانات | الوصف |
|-------------|-----------|-------------|
| `model` | MODEL | يُرجع النموذج المعدل بعد تطبيق الإرشاد الإسقاطي التكيّفي على عملية أخذ العينات الخاصة به |
| `model` | MODEL | يُرجع النموذج المعدل بعد تطبيق الإرشاد الإسقاطي التكيّفي على عملية أخذ العينات الخاصة به |
2 changes: 1 addition & 1 deletion comfyui_embedded_docs/docs/APG/pt-BR.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,4 @@ O nó APG (Adaptive Projected Guidance, ou Orientação por Projeção Adaptativ

| Nome da Saída | Tipo de Dado | Descrição |
|-------------|-----------|-------------|
| `model` | MODEL | Retorna o modelo modificado com a orientação por projeção adaptativa aplicada ao seu processo de amostragem |
| `model` | MODEL | Retorna o modelo modificado com a orientação por projeção adaptativa aplicada ao seu processo de amostragem |
2 changes: 1 addition & 1 deletion comfyui_embedded_docs/docs/APG/tr.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,4 @@ APG (Uyarlanabilir Yansıtılmış Kılavuzluk) düğümü, yayılım sürecinde

| Çıktı Adı | Veri Türü | Açıklama |
|-------------|-----------|-------------|
| `model` | MODEL | Örnekleme işlemine uyarlanabilir yansıtılmış kılavuzluk uygulanmış olarak değiştirilmiş modeli döndürür |
| `model` | MODEL | Örnekleme işlemine uyarlanabilir yansıtılmış kılavuzluk uygulanmış olarak değiştirilmiş modeli döndürür |
2 changes: 1 addition & 1 deletion comfyui_embedded_docs/docs/APG/zh-TW.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,4 @@ APG(自適應投影引導)節點透過調整擴散過程中引導應用的

| 輸出名稱 | 資料類型 | 描述 |
|-------------|-----------|-------------|
| `model` | MODEL | 返回已在其採樣過程中應用自適應投影引導的修改後模型 |
| `model` | MODEL | 返回已在其採樣過程中應用自適應投影引導的修改後模型 |
2 changes: 1 addition & 1 deletion comfyui_embedded_docs/docs/AddNoise/ar.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,4 @@

| اسم المخرج | نوع البيانات | الوصف |
|-------------|-----------|-------------|
| `LATENT` | LATENT | التمثيل الكامن المعدل مع الضوضاء المُضافة |
| `LATENT` | LATENT | التمثيل الكامن المعدل مع الضوضاء المُضافة |
2 changes: 1 addition & 1 deletion comfyui_embedded_docs/docs/AddNoise/pt-BR.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,4 @@ O nó recebe uma imagem latente e aplica ruído a ela com base no gerador de ru

| Nome da Saída | Tipo de Dados | Descrição |
|-------------|-----------|-------------|
| `LATENT` | LATENT | A representação latente modificada com ruído adicionado |
| `LATENT` | LATENT | A representação latente modificada com ruído adicionado |
2 changes: 1 addition & 1 deletion comfyui_embedded_docs/docs/AddNoise/tr.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,4 @@ Düğüm, bir gizli görüntü alır ve sağlanan gürültü üreteci ve sigma d

| Çıktı Adı | Veri Türü | Açıklama |
|-------------|-----------|-------------|
| `LATENT` | LATENT | Eklenen gürültü ile değiştirilmiş gizli temsil |
| `LATENT` | LATENT | Eklenen gürültü ile değiştirilmiş gizli temsil |
2 changes: 1 addition & 1 deletion comfyui_embedded_docs/docs/AddNoise/zh-TW.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,4 @@

| 輸出名稱 | 資料類型 | 描述 |
|-------------|-----------|-------------|
| `LATENT` | LATENT | 帶有添加雜訊的修改後潛在表示 |
| `LATENT` | LATENT | 帶有添加雜訊的修改後潛在表示 |
2 changes: 1 addition & 1 deletion comfyui_embedded_docs/docs/AddTextPrefix/ar.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@

| اسم المخرج | نوع البيانات | الوصف |
|-------------|-----------|-------------|
| `text` | STRING | النص الناتج بعد إضافة البادئة إلى مقدمته. |
| `text` | STRING | النص الناتج بعد إضافة البادئة إلى مقدمته. |
2 changes: 1 addition & 1 deletion comfyui_embedded_docs/docs/AddTextPrefix/en.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ The Add Text Prefix node modifies text by adding a specified string to the begin

| Output Name | Data Type | Description |
|-------------|-----------|-------------|
| `text` | STRING | The resulting text with the prefix added to the front. |
| `text` | STRING | The resulting text with the prefix added to the front. |
2 changes: 1 addition & 1 deletion comfyui_embedded_docs/docs/AddTextPrefix/es.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ El nodo Add Text Prefix modifica texto añadiendo una cadena específica al prin

| Nombre de Salida | Tipo de Dato | Descripción |
|-------------|-----------|-------------|
| `text` | STRING | El texto resultante con el prefijo añadido al frente. |
| `text` | STRING | El texto resultante con el prefijo añadido al frente. |
2 changes: 1 addition & 1 deletion comfyui_embedded_docs/docs/AddTextPrefix/fr.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ Le nœud Add Text Prefix modifie du texte en ajoutant une chaîne spécifiée au

| Nom de la sortie | Type de données | Description |
|-------------|-----------|-------------|
| `text` | STRING | Le texte résultant avec le préfixe ajouté au début. |
| `text` | STRING | Le texte résultant avec le préfixe ajouté au début. |
2 changes: 1 addition & 1 deletion comfyui_embedded_docs/docs/AddTextPrefix/ja.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ Add Text Prefix ノードは、指定された文字列を各入力テキスト

| 出力名 | データ型 | 説明 |
|-------------|-----------|-------------|
| `text` | STRING | 先頭に接頭辞が追加された結果のテキストです。 |
| `text` | STRING | 先頭に接頭辞が追加された結果のテキストです。 |
2 changes: 1 addition & 1 deletion comfyui_embedded_docs/docs/AddTextPrefix/ko.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ Add Text Prefix 노드는 각 입력 텍스트의 시작 부분에 지정된 문

| 출력 이름 | 데이터 타입 | 설명 |
|-------------|-----------|-------------|
| `text` | STRING | 접두사가 앞에 추가된 결과 텍스트입니다. |
| `text` | STRING | 접두사가 앞에 추가된 결과 텍스트입니다. |
2 changes: 1 addition & 1 deletion comfyui_embedded_docs/docs/AddTextPrefix/pt-BR.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ O nó Add Text Prefix modifica o texto adicionando uma string especificada ao in

| Nome da Saída | Tipo de Dados | Descrição |
|-------------|-----------|-------------|
| `text` | STRING | O texto resultante com o prefixo adicionado à frente. |
| `text` | STRING | O texto resultante com o prefixo adicionado à frente. |
2 changes: 1 addition & 1 deletion comfyui_embedded_docs/docs/AddTextPrefix/ru.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@

| Название выхода | Тип данных | Описание |
|-------------|-----------|-------------|
| `text` | STRING | Результирующий текст с добавленным в начало префиксом. |
| `text` | STRING | Результирующий текст с добавленным в начало префиксом. |
2 changes: 1 addition & 1 deletion comfyui_embedded_docs/docs/AddTextPrefix/tr.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ Add Text Prefix düğümü, her bir giriş metninin başına belirli bir dize ek

| Çıkış Adı | Veri Türü | Açıklama |
|-------------|-----------|-------------|
| `text` | STRING | Ön ekin başa eklendiği sonuç metni. |
| `text` | STRING | Ön ekin başa eklendiği sonuç metni. |
2 changes: 1 addition & 1 deletion comfyui_embedded_docs/docs/AddTextPrefix/zh-TW.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@

| 輸出名稱 | 資料類型 | 描述 |
|-------------|-----------|-------------|
| `text` | STRING | 在開頭添加了字首後產生的文字。 |
| `text` | STRING | 在開頭添加了字首後產生的文字。 |
2 changes: 1 addition & 1 deletion comfyui_embedded_docs/docs/AddTextPrefix/zh.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ Add Text Prefix 节点通过在每个输入文本的开头添加指定字符串

| 输出名称 | 数据类型 | 描述 |
|-------------|-----------|-------------|
| `text` | STRING | 将前缀添加到开头后得到的文本。 |
| `text` | STRING | 将前缀添加到开头后得到的文本。 |
2 changes: 1 addition & 1 deletion comfyui_embedded_docs/docs/AddTextSuffix/ar.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@

| اسم المخرج | نوع البيانات | الوصف |
|-------------|-----------|-------------|
| `text` | STRING | النص الناتج بعد إلحاق اللاحقة. |
| `text` | STRING | النص الناتج بعد إلحاق اللاحقة. |
2 changes: 1 addition & 1 deletion comfyui_embedded_docs/docs/AddTextSuffix/en.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ This node appends a specified suffix to the end of an input text string. It take

| Output Name | Data Type | Description |
|-------------|-----------|-------------|
| `text` | STRING | The resulting text after the suffix has been appended. |
| `text` | STRING | The resulting text after the suffix has been appended. |
2 changes: 1 addition & 1 deletion comfyui_embedded_docs/docs/AddTextSuffix/es.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ Este nodo añade un sufijo especificado al final de una cadena de texto de entra

| Nombre de Salida | Tipo de Dato | Descripción |
|-------------|-----------|-------------|
| `text` | STRING | El texto resultante después de haber añadido el sufijo. |
| `text` | STRING | El texto resultante después de haber añadido el sufijo. |
2 changes: 1 addition & 1 deletion comfyui_embedded_docs/docs/AddTextSuffix/fr.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ Ce nœud ajoute un suffixe spécifié à la fin d'une chaîne de texte d'entrée

| Nom de la sortie | Type de données | Description |
|-------------|-----------|-------------|
| `text` | STRING | Le texte résultant après l'ajout du suffixe. |
| `text` | STRING | Le texte résultant après l'ajout du suffixe. |
2 changes: 1 addition & 1 deletion comfyui_embedded_docs/docs/AddTextSuffix/ja.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@

| 出力名 | データ型 | 説明 |
|-------------|-----------|-------------|
| `text` | STRING | 接尾辞が追加された後の結果のテキストです。 |
| `text` | STRING | 接尾辞が追加された後の結果のテキストです。 |
2 changes: 1 addition & 1 deletion comfyui_embedded_docs/docs/AddTextSuffix/ko.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@

| 출력 이름 | 데이터 타입 | 설명 |
|-------------|-----------|-------------|
| `text` | STRING | 접미사가 추가된 후의 결과 텍스트입니다. |
| `text` | STRING | 접미사가 추가된 후의 결과 텍스트입니다. |
2 changes: 1 addition & 1 deletion comfyui_embedded_docs/docs/AddTextSuffix/pt-BR.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ Este nó adiciona um sufixo especificado ao final de uma string de texto de entr

| Nome da Saída | Tipo de Dados | Descrição |
|-------------|-----------|-------------|
| `text` | STRING | O texto resultante após a adição do sufixo. |
| `text` | STRING | O texto resultante após a adição do sufixo. |
2 changes: 1 addition & 1 deletion comfyui_embedded_docs/docs/AddTextSuffix/ru.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@

| Имя выхода | Тип данных | Описание |
|-------------|-----------|-------------|
| `text` | STRING | Полученный текст после добавления суффикса. |
| `text` | STRING | Полученный текст после добавления суффикса. |
2 changes: 1 addition & 1 deletion comfyui_embedded_docs/docs/AddTextSuffix/tr.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ Bu düğüm, belirtilen bir soneki giriş metin dizisinin sonuna ekler. Orijinal

| Çıkış Adı | Veri Türü | Açıklama |
|-------------|-----------|-------------|
| `text` | STRING | Sonek eklendikten sonra ortaya çıkan metin. |
| `text` | STRING | Sonek eklendikten sonra ortaya çıkan metin. |
2 changes: 1 addition & 1 deletion comfyui_embedded_docs/docs/AddTextSuffix/zh-TW.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@

| 輸出名稱 | 資料類型 | 描述 |
|-------------|-----------|-------------|
| `text` | STRING | 附加後綴後產生的文字結果。 |
| `text` | STRING | 附加後綴後產生的文字結果。 |
2 changes: 1 addition & 1 deletion comfyui_embedded_docs/docs/AddTextSuffix/zh.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@

| 输出名称 | 数据类型 | 描述 |
|-------------|-----------|-------------|
| `text` | STRING | 后缀追加后得到的最终文本。 |
| `text` | STRING | 后缀追加后得到的最终文本。 |
2 changes: 1 addition & 1 deletion comfyui_embedded_docs/docs/AdjustBrightness/ar.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@

| اسم المخرج | نوع البيانات | الوصف |
|-------------|-----------|-------------|
| `image` | IMAGE | الصورة الناتجة بعد تعديل السطوع. |
| `image` | IMAGE | الصورة الناتجة بعد تعديل السطوع. |
2 changes: 1 addition & 1 deletion comfyui_embedded_docs/docs/AdjustBrightness/en.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ The Adjust Brightness node modifies the brightness of an input image. It works b

| Output Name | Data Type | Description |
|-------------|-----------|-------------|
| `image` | IMAGE | The output image with adjusted brightness. |
| `image` | IMAGE | The output image with adjusted brightness. |
2 changes: 1 addition & 1 deletion comfyui_embedded_docs/docs/AdjustBrightness/es.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ El nodo Ajustar Brillo modifica el brillo de una imagen de entrada. Funciona mul

| Nombre de Salida | Tipo de Dato | Descripción |
|-------------|-----------|-------------|
| `image` | IMAGE | La imagen de salida con el brillo ajustado. |
| `image` | IMAGE | La imagen de salida con el brillo ajustado. |
2 changes: 1 addition & 1 deletion comfyui_embedded_docs/docs/AdjustBrightness/fr.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ Le nœud Adjust Brightness modifie la luminosité d'une image d'entrée. Il fonc

| Nom de la sortie | Type de données | Description |
|-------------|-----------|-------------|
| `image` | IMAGE | L'image de sortie avec la luminosité ajustée. |
| `image` | IMAGE | L'image de sortie avec la luminosité ajustée. |
2 changes: 1 addition & 1 deletion comfyui_embedded_docs/docs/AdjustBrightness/ja.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ Adjust Brightnessノードは、入力画像の明るさを調整します。各

| 出力名 | データ型 | 説明 |
|-------------|-----------|-------------|
| `image` | IMAGE | 明るさが調整された出力画像。 |
| `image` | IMAGE | 明るさが調整された出力画像。 |
2 changes: 1 addition & 1 deletion comfyui_embedded_docs/docs/AdjustBrightness/ko.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ Adjust Brightness 노드는 입력 이미지의 밝기를 조정합니다. 각

| 출력 이름 | 데이터 타입 | 설명 |
|-------------|-----------|-------------|
| `image` | IMAGE | 밝기가 조정된 출력 이미지입니다. |
| `image` | IMAGE | 밝기가 조정된 출력 이미지입니다. |
2 changes: 1 addition & 1 deletion comfyui_embedded_docs/docs/AdjustBrightness/pt-BR.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ O nó Ajustar Brilho modifica o brilho de uma imagem de entrada. Ele funciona mu

| Nome da Saída | Tipo de Dados | Descrição |
|-------------|-----------|-------------|
| `image` | IMAGE | A imagem de saída com o brilho ajustado. |
| `image` | IMAGE | A imagem de saída com o brilho ajustado. |
2 changes: 1 addition & 1 deletion comfyui_embedded_docs/docs/AdjustBrightness/ru.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@

| Имя выхода | Тип данных | Описание |
|-------------|-----------|-------------|
| `image` | IMAGE | Выходное изображение с откорректированной яркостью. |
| `image` | IMAGE | Выходное изображение с откорректированной яркостью. |
2 changes: 1 addition & 1 deletion comfyui_embedded_docs/docs/AdjustBrightness/tr.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ Adjust Brightness düğümü, bir giriş görüntüsünün parlaklığını değ

| Çıkış Adı | Veri Türü | Açıklama |
|-------------|-----------|-------------|
| `image` | IMAGE | Parlaklığı ayarlanmış çıkış görüntüsü. |
| `image` | IMAGE | Parlaklığı ayarlanmış çıkış görüntüsü. |
2 changes: 1 addition & 1 deletion comfyui_embedded_docs/docs/AdjustBrightness/zh-TW.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@

| 輸出名稱 | 資料類型 | 描述 |
|-------------|-----------|-------------|
| `image` | IMAGE | 亮度調整後的輸出圖像。 |
| `image` | IMAGE | 亮度調整後的輸出圖像。 |
2 changes: 1 addition & 1 deletion comfyui_embedded_docs/docs/AdjustBrightness/zh.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@

| 输出名称 | 数据类型 | 描述 |
|-------------|-----------|-------------|
| `image` | IMAGE | 调整亮度后的输出图像。 |
| `image` | IMAGE | 调整亮度后的输出图像。 |
2 changes: 1 addition & 1 deletion comfyui_embedded_docs/docs/AdjustContrast/ar.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@

| اسم المخرج | نوع البيانات | الوصف |
|-------------|-----------|-------------|
| `image` | IMAGE | الصورة الناتجة بعد تعديل التباين. |
| `image` | IMAGE | الصورة الناتجة بعد تعديل التباين. |
Loading