Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我希望能够在邮件合并中的合并字段之间添加一个自动段落。合并字段的单词写在一起,它们之间没有空格。我该如何以这种方式格式化它?
如果您有两个连续的合并字段<<field1>> <<field2>>,您不能只执行以下操作:-
<<field1>> <<field2>>
document.merge(field1='your field1 text here\n', field2='your field2 text here')
\n 将在 field1 的末尾插入换行符。