Informed_Consent / makeMarkdown.py
Mdean77's picture
my files
1f49ee0
raw
history blame contribute delete
587 Bytes
# 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)}")