From 9dcfcb4d5c49c4c5763194bd7f6a302cf49396e2 Mon Sep 17 00:00:00 2001 From: Benjamin Coe Date: Mon, 24 Jun 2019 16:57:48 -0700 Subject: [PATCH 1/2] fix(docs): reference docs should link to section of googleapis.dev with API reference --- README.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index befcc5b0..709bd87e 100644 --- a/README.md +++ b/README.md @@ -132,10 +132,12 @@ Apache Version 2.0 See [LICENSE](https://github.com/googleapis/nodejs-compute/blob/master/LICENSE) -[client-docs]: https://googleapis.dev/nodejs/compute/latest +[client-docs]: https://googleapis.dev/nodejs/compute/latest#reference [product-docs]: https://cloud.google.com/compute [shell_img]: https://gstatic.com/cloudssh/images/open-btn.png [projects]: https://console.cloud.google.com/project [billing]: https://support.google.com/cloud/answer/6293499#enable-billing [enable_api]: https://console.cloud.google.com/flows/enableapi?apiid=compute.googleapis.com -[auth]: https://cloud.google.com/docs/authentication/getting-started \ No newline at end of file +[auth]: https://cloud.google.com/docs/authentication/getting-started + + From 572f77b5552096bf0c974c74e69700592744d8a5 Mon Sep 17 00:00:00 2001 From: Benjamin Coe Date: Tue, 25 Jun 2019 12:22:30 -0700 Subject: [PATCH 2/2] fix(docs): make anchors work in jsdoc --- .jsdoc.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.jsdoc.js b/.jsdoc.js index c24380aa..7730d442 100644 --- a/.jsdoc.js +++ b/.jsdoc.js @@ -41,5 +41,8 @@ module.exports = { sourceFiles: false, systemName: '@google-cloud/compute', theme: 'lumen' + }, + markdown: { + idInHeadings: true } };