htr_demo / helper /text /markdown_reader.py
Gabriel's picture
restructirng md
60ad418
def read_markdown(file_path: str) -> str:
with open(file_path, "r") as file:
content = file.read()
return f"""{content}"""