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:
parent
13e212c856
commit
e7e89d3ecb
2 changed files with 2 additions and 2 deletions
|
|
@ -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:
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue