You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
355 B
9 lines
355 B
from pathlib import Path
|
|
|
|
# 正确路径拼接方式
|
|
mdWorkingPath = Path(__file__).parent / 'md-file' / 'readme'
|
|
DEFAULT_TEMPLATE = mdWorkingPath / 'default.md' # 使用 / 运算符
|
|
DEFAULT_OUTPUT_DIR = mdWorkingPath / 'output' # 使用 / 运算符
|
|
|
|
# print(f"模板路径:{DEFAULT_TEMPLATE}")
|
|
# print(f"输出目录:{DEFAULT_OUTPUT_DIR}") |