我正在使用 python-docx 但我不理解或检索任何更改标题样式(从粗体到正常)的方法。我的代码是:
import docx
from docx.shared import RGBColor
from docx.shared import Pt
from docx.dml.color import ColorFormat
from docx.enum.style import WD_STYLE_TYPE
#format only the filename as return text
def format_filename(fname):
index = fname.rfind('\\')
font.color.rgb = RGBColor(255,0,0)
#IF statement for structuring the fine name
if index>0:
filename = fname[index + 1, len(fname)]
else:
index = fname.rfind('/')
filename = fname[index + 1 : len(fname)]
return filename
#print all the file into docx
def print_file(file):
font.bold = False
font.color.rgb = RGBColor(0,0,0)
cnt = …Run Code Online (Sandbox Code Playgroud) 两天前,在我的 Git 更改窗口中双击修改后的文件,我可以打开一个与未修改的先前版本的并排比较视图。现在只需右键单击进行选择即可实现这一点。我怎样才能解决这个问题?(我没有修改我的配置中的任何内容)