I am wondering how to copy a google doc, but include the style, links and font, from within google scripts. I have tried to use the getBody()
DocumentApp.getActiveDocument().getBody().clear() document2 = DocumentApp.openById("Document_ID").getBody().getText() DocumentApp.getActiveDocument().getBody().appendParagraph(document2) But that only copies that raw text.
EDIT: Removed documents because the question was solved