diff --git a/CrossDown.py b/CrossDown.py index e79da3e..145c92a 100644 --- a/CrossDown.py +++ b/CrossDown.py @@ -122,6 +122,14 @@ def main(text: str) -> str: if __name__ == '__main__': with open('test.md', encoding='utf-8') as test: - cd = main(test.read()) + cd = f""" + + + 页面标题 + + + {main(test.read())} + +""" with open('test.html', 'w', encoding='utf-8') as html: html.write(cd)