附加元素上方的空行

Empty row above appended element

我想在 Google 文档页面的顶部插入一个新的 table,然后是一段文字,我做了以下操作:

function myFunction() {
var doc = DocumentApp.create("Random mix");
body=doc.getBody();
var cell = [
['Q11','Q21'],
['Q12','Q22']
];
body.insertTable(0,cell);
body.appendParagraph('my paragraphs..');
}

然而,table只在第二行(table上方还有一个空行)。 table 和文本之间总是有一个空行。 table 的顶部和 table 的中间如何没有空行(它们靠得很近)? 感谢您的帮助!

这是我能做到的最好的了

function myFunction() {
  var doc = DocumentApp.create("Random mix");
  body = doc.getBody();
  var cell = [
    ['Q11', 'Q21'],
    ['Q12', 'Q22']
  ];
  body.insertTable(0, cell);
  body.appendParagraph('my paragraphs..');
  body.removeChild(body.getChild(1));
}