diff --git a/CrossDown.py b/CrossDown.py index c519f28..4b083b7 100644 --- a/CrossDown.py +++ b/CrossDown.py @@ -10,6 +10,35 @@ except ModuleNotFoundError: EXTRA_ABLE = False +HEAD = """ + + + + + + +""" + + +BODY = """ + + +""" + + class Style: """ 渲染字体样式 @@ -226,7 +255,7 @@ class Basic: return re.sub('// .*?\n', '\n', text) -def add_indent_to_string(input_string: str, indent_spaces: int = 4): +def indent(input_string: str, indent_spaces: int = 4): """ 给字符串中的每一行前面加上缩进。 :param input_string: 原始字符串,可以包含多行。 @@ -284,26 +313,12 @@ if __name__ == '__main__':