File size: 140 Bytes
60ad418
 
 
 
 
1
2
3
4
5
6
def read_markdown(file_path: str) -> str:
    with open(file_path, "r") as file:
        content = file.read()

    return f"""{content}"""