Spaces:
Running
on
Zero
Running
on
Zero
baseline and quick fix: Title & Description
Browse files- file_handler/file_utils.py +1 -1
- utils/config.py +2 -3
file_handler/file_utils.py
CHANGED
|
@@ -76,7 +76,7 @@ def check_create_logfile(filename: str, dir_path: Union[str, Path]="logs") -> Pa
|
|
| 76 |
# If the file doesn't exist, touch() will create an empty file.
|
| 77 |
log_file.touch()
|
| 78 |
|
| 79 |
-
|
| 80 |
|
| 81 |
return log_file
|
| 82 |
|
|
|
|
| 76 |
# If the file doesn't exist, touch() will create an empty file.
|
| 77 |
log_file.touch()
|
| 78 |
|
| 79 |
+
print(f"Created log file at: {log_file}") ##debug
|
| 80 |
|
| 81 |
return log_file
|
| 82 |
|
utils/config.py
CHANGED
|
@@ -8,10 +8,9 @@ Centralised configuration constants.
|
|
| 8 |
"""
|
| 9 |
|
| 10 |
# UI text
|
| 11 |
-
TITLE = "
|
| 12 |
DESCRIPTION = (
|
| 13 |
-
"
|
| 14 |
-
"Or upload Markdown/LaTeX files and generate a polished PDF."
|
| 15 |
)
|
| 16 |
DESCRIPTION_PDF_HTML = (
|
| 17 |
"Upload a single or multiple PDF or HTML, a folder or an entire directory tree "
|
|
|
|
| 8 |
"""
|
| 9 |
|
| 10 |
# UI text
|
| 11 |
+
TITLE = "Parser2md (PyPDFmd/ParserPDF) – PDF & HTML ↔ Markdown Converter"
|
| 12 |
DESCRIPTION = (
|
| 13 |
+
"Parser2md (PyPDFmd) - Convert files to Markdown."
|
|
|
|
| 14 |
)
|
| 15 |
DESCRIPTION_PDF_HTML = (
|
| 16 |
"Upload a single or multiple PDF or HTML, a folder or an entire directory tree "
|