Updated Advanced (markdown)

Dowon
2024-03-01 16:01:01 +09:00
parent 1a2c1338a7
commit a19342733d

@@ -46,8 +46,30 @@ masterpiece, 1girl, blue hair, blue eyes
masterpiece, 1girl, blue hair, blue eyes
```
### `[SKIP]`
## `[SKIP]`
If the prompt for any part is `[SKIP]`, that part is skipped without inpainting.
(Precisely, if it matches the regex `^\s*\[SKIP\]\s*$`).
(Precisely, if it matches the regex `^\s*\[SKIP\]\s*$`).
## `[PROMPT]`
The `[PROMPT]` token is replaced with the original prompt (or negative prompt).
#### example:
Input prompt:
```
masterpiece, best quality, 1girl
```
ADetailer prompt:
```
[PROMPT], red eyes
```
Result:
```
masterpiece, best quality, 1girl, red eyes
```