Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -224,7 +224,7 @@ def process():
|
|
| 224 |
return jsonify(response_data), 400
|
| 225 |
|
| 226 |
markdown_content = create_markdown_document(files=files)
|
| 227 |
-
response_data['markdown'] = "```
|
| 228 |
response_data['html'] = markdown.markdown(markdown_content)
|
| 229 |
response_data['filename'] = "uploaded_files_summary.md"
|
| 230 |
else:
|
|
|
|
| 224 |
return jsonify(response_data), 400
|
| 225 |
|
| 226 |
markdown_content = create_markdown_document(files=files)
|
| 227 |
+
response_data['markdown'] = "```markdown\n" + markdown_content + "\n```"
|
| 228 |
response_data['html'] = markdown.markdown(markdown_content)
|
| 229 |
response_data['filename'] = "uploaded_files_summary.md"
|
| 230 |
else:
|