Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
Riksarkivet
/
htr_demo
like
28
Sleeping
App
Files
Files
Community
7
4ba5150
htr_demo
/
helper
/
text
/
markdown_reader.py
Gabriel
restructirng md
60ad418
about 1 year ago
raw
Copy download link
history
blame
Safe
140 Bytes
def
read_markdown
(
file_path:
str
) ->
str
:
with
open
(file_path,
"r"
)
as
file:
content = file.read()
return
f"""
{content}
"""