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.
14 lines
331 B
14 lines
331 B
2 weeks ago
|
import asyncio
|
||
|
|
||
|
from Util.DocxUtil import get_docx_content_by_pandoc
|
||
2 weeks ago
|
|
||
|
|
||
2 weeks ago
|
async def main():
|
||
|
# 要处理的文件路径
|
||
2 weeks ago
|
file_path = "Docx/《动能定理》巩固练习.docx"
|
||
2 weeks ago
|
# 转换docx为md
|
||
2 weeks ago
|
get_docx_content_by_pandoc(file_path, '../Word转试题.md')
|
||
2 weeks ago
|
|
||
2 weeks ago
|
if __name__ == "__main__":
|
||
|
asyncio.run(main())
|