Doc: style fix (#11295)

### What problem does this PR solve?

Style fix based on  #11283
### Type of change

- [x] Documentation Update
This commit is contained in:
Billy Bao
2025-11-17 11:16:34 +08:00
committed by GitHub
parent 13e212c856
commit e7e89d3ecb
2 changed files with 2 additions and 2 deletions

View File

@ -434,7 +434,7 @@ class MinerUParser(RAGFlowPdfParser):
if not section.strip():
section = "FAILED TO PARSE TABLE"
case MinerUContentType.IMAGE:
section = "".join(output.get(["image_caption"],[])) + "\n" + "".join(output.get(["image_footnote"],[]))
section = "".join(output.get("image_caption", [])) + "\n" + "".join(output.get("image_footnote", []))
case MinerUContentType.EQUATION:
section = output["text"]
case MinerUContentType.CODE:

View File

@ -15,7 +15,7 @@ To access the RAGFlow admin UI, append `/admin` to the web UI's address, e.g. `h
### Default Credentials
| Username | Password |
|----------|----------|
| admin@ragflow.io | admin |
| `admin@ragflow.io` | `admin` |
## Admin UI Overview