def to_pdf(title: str, markdown_source: str) -> bytes: html_style = MarkdownToPDF.css() html_body = markdown2.markdown(markdown_source) html = f""" <html> ...
確定! 回上一頁