Spaces:
Runtime error
Runtime error
| # from IPython.display import display, Markdown | |
| import os | |
| """ | |
| This procedure writes the full Markdown document to disk. | |
| """ | |
| def makeMarkdown(markdownFile, title): | |
| # Combine all summaries into one string | |
| combined_markdown = "\n\n---\n\n".join(markdownFile) | |
| # Add a title to the combined document | |
| full_document = combined_markdown | |
| # Save the Markdown content to a file | |
| file_path = f'{title}.md' | |
| with open(file_path, 'w', encoding='utf-8') as f: | |
| f.write(full_document) | |
| print(f"Markdown document has been created: {os.path.abspath(file_path)}") | |