0
function appendiNote() { //appende tutte le note ma senza formattazione..
var note = DocumentApp.getActiveDocument().getFootnotes();
for (var i = 0; i < note.length; i++){
var par = note[i].getFootnoteContents();
DocumentApp.getActiveDocument().getBody().appendParagraph((i+1)+par.getText());
}
追加体文档中的所有注意,但对格式丢失....我该怎么做,所以它被格式化为好(一个字一个字,我需要它来保存斜体和大胆的话)?
太感谢你了,它的工作如预期:) – lucanapo