feat 🐛:update

pull/1/head
许标 1 week ago
parent aa3311ee2f
commit 516554f637

Binary file not shown.

@ -6,7 +6,7 @@ from docx.shared import Pt
# 获取日志记录器
logger = logging.getLogger(__name__)
excluded_list = ['{{year}}','{{month}}', '{{day}}']
#excluded_list = ['{{year}}','{{month}}', '{{day}}']
# 将文档中的字符串变量替换成提取内容
def replace_text_in_paragraph(paragraph, old_text, new_text):
try:
@ -15,7 +15,7 @@ def replace_text_in_paragraph(paragraph, old_text, new_text):
for run in paragraph.runs:
if old_text in run.text:
run.text = run.text.replace(old_text, new_text)
if old_text.startswith('{{') and old_text not in excluded_list :
if old_text.startswith('{{') :
run.font.name = "Times New Roman"
#run.font.name = "仿宋"
run._element.rPr.rFonts.set(qn('w:eastAsia'), '仿宋')

Loading…
Cancel
Save