Spaces:
Runtime error
Runtime error
File size: 587 Bytes
1f49ee0 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
# 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)}")
|