我正在使用一些标题结构动态创建文档
doc = DocumentApp.create("My Document");
doc.appendParagraph("Main").setHeading(DocumentApp.ParagraphHeading.HEADING1);
var section = doc.appendParagraph("Section 1");
section.setHeading(DocumentApp.ParagraphHeading.HEADING2);
我可以在线打开它,插入目录,并可以通过 url 直接访问“第 1 节”,例如: https ://docs.google.com/document/d/1aA...FQ/edit#heading=h.41bpnx2ug57j
问题是:如何在运行时获得与代码中的“第 1 节”类似的 url/id 并稍后将其用作链接?
如果我不能 - 有没有办法设置锚/书签之类的东西并获取它的网址?
谢谢!