Skip to content

Commit

Permalink
Update quickstart.gs for the tabs in Docs feature
Browse files Browse the repository at this point in the history
This is part of an ongoing effort to update Docs API guides/documentation for the tabs feature.
  • Loading branch information
lfelpi-google authored Aug 12, 2024
1 parent 2e6ee8b commit 004f4b4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/quickstart/quickstart.gs
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ function printDocTitle() {
const documentId = '195j9eDD3ccgjQRttHhJPymLJUCOUjs-jmwTrekvdjFE';
try {
// Get the document using document id
const doc = Docs.Documents.get(documentId);
const doc = Docs.Documents.get({'includeTabsContent': true}, documentId);
// Log the title of document.
console.log('The title of the doc is: %s', doc.title);
} catch (err) {
Expand Down

0 comments on commit 004f4b4

Please sign in to comment.