From fcdb406dfb6b8d66c6723091e8b7ed939c4fb292 Mon Sep 17 00:00:00 2001 From: ParzivalPavlis Date: Wed, 10 Sep 2025 10:51:56 +0200 Subject: [PATCH 01/13] fix: added id to the main content risk: low --- docs/layouts/_default/baseof.html | 2 +- docs/layouts/docs/baseof.html | 2 +- docs/layouts/swagger/baseof.html | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/layouts/_default/baseof.html b/docs/layouts/_default/baseof.html index 94adb78f7..113febb9a 100644 --- a/docs/layouts/_default/baseof.html +++ b/docs/layouts/_default/baseof.html @@ -10,7 +10,7 @@ {{ partial "navbar.html" . }}
-
+
{{ block "main" . }}{{ end }}
{{ partialCached "footer.html" . }} diff --git a/docs/layouts/docs/baseof.html b/docs/layouts/docs/baseof.html index 56c1d0fb4..3ad552702 100644 --- a/docs/layouts/docs/baseof.html +++ b/docs/layouts/docs/baseof.html @@ -25,7 +25,7 @@
{{ partial "toc.html" . }}
-
+
{{ partial "version-banner.html" . }} {{ if not .Site.Params.ui.breadcrumb_disable }}{{ partial "breadcrumb.html" . }}{{ end }} {{ if .Draft }} diff --git a/docs/layouts/swagger/baseof.html b/docs/layouts/swagger/baseof.html index 83563423a..ee033d2a4 100644 --- a/docs/layouts/swagger/baseof.html +++ b/docs/layouts/swagger/baseof.html @@ -23,7 +23,7 @@
{{ partial "toc.html" . }}
-
+
{{ if not .Site.Params.ui.breadcrumb_disable }}{{ partial "breadcrumb.html" . }}{{ end }} From 3c3091a7afe643b018616979363bcab9032e5b4f Mon Sep 17 00:00:00 2001 From: ParzivalPavlis Date: Wed, 10 Sep 2025 10:57:21 +0200 Subject: [PATCH 02/13] fix: renamed the id risk: low --- docs/layouts/_default/baseof.html | 2 +- docs/layouts/docs/baseof.html | 2 +- docs/layouts/swagger/baseof.html | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/layouts/_default/baseof.html b/docs/layouts/_default/baseof.html index 113febb9a..5b2cc9c6b 100644 --- a/docs/layouts/_default/baseof.html +++ b/docs/layouts/_default/baseof.html @@ -10,7 +10,7 @@ {{ partial "navbar.html" . }}
-
+
{{ block "main" . }}{{ end }}
{{ partialCached "footer.html" . }} diff --git a/docs/layouts/docs/baseof.html b/docs/layouts/docs/baseof.html index 3ad552702..eef148436 100644 --- a/docs/layouts/docs/baseof.html +++ b/docs/layouts/docs/baseof.html @@ -25,7 +25,7 @@
{{ partial "toc.html" . }}
-
+
{{ partial "version-banner.html" . }} {{ if not .Site.Params.ui.breadcrumb_disable }}{{ partial "breadcrumb.html" . }}{{ end }} {{ if .Draft }} diff --git a/docs/layouts/swagger/baseof.html b/docs/layouts/swagger/baseof.html index ee033d2a4..2043d16ab 100644 --- a/docs/layouts/swagger/baseof.html +++ b/docs/layouts/swagger/baseof.html @@ -23,7 +23,7 @@
{{ partial "toc.html" . }}
-
+
{{ if not .Site.Params.ui.breadcrumb_disable }}{{ partial "breadcrumb.html" . }}{{ end }} From 7e0a5ea04e9065d3a915b4960e4c7f2031df8913 Mon Sep 17 00:00:00 2001 From: ParzivalPavlis Date: Wed, 10 Sep 2025 11:01:47 +0200 Subject: [PATCH 03/13] fix: remove mobile breadcrumb navigation from base layout risk: low --- docs/layouts/docs/baseof.html | 3 --- 1 file changed, 3 deletions(-) diff --git a/docs/layouts/docs/baseof.html b/docs/layouts/docs/baseof.html index eef148436..28e08728f 100644 --- a/docs/layouts/docs/baseof.html +++ b/docs/layouts/docs/baseof.html @@ -15,9 +15,6 @@
-
- {{ partial "navbar-breadcrumb.html" . }} -
{{ partial "sidebar.html" . }} From f1d85d937d659bd2c6d27e05cabf2541a09642cd Mon Sep 17 00:00:00 2001 From: ParzivalPavlis Date: Wed, 10 Sep 2025 11:06:29 +0200 Subject: [PATCH 04/13] feat: add mobile navigation menu to header layout risk: low --- docs/layouts/partials/header-menu.html | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 docs/layouts/partials/header-menu.html diff --git a/docs/layouts/partials/header-menu.html b/docs/layouts/partials/header-menu.html new file mode 100644 index 000000000..0bfd7f028 --- /dev/null +++ b/docs/layouts/partials/header-menu.html @@ -0,0 +1,24 @@ + From c1023928d74353cf3486b0baa871f8f19c0c8760 Mon Sep 17 00:00:00 2001 From: ParzivalPavlis Date: Wed, 10 Sep 2025 11:14:58 +0200 Subject: [PATCH 05/13] feat: add base layout for API reference documentation risk: low --- docs/layouts/api-reference/baseof.html | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 docs/layouts/api-reference/baseof.html diff --git a/docs/layouts/api-reference/baseof.html b/docs/layouts/api-reference/baseof.html new file mode 100644 index 000000000..069ba7c50 --- /dev/null +++ b/docs/layouts/api-reference/baseof.html @@ -0,0 +1,26 @@ +{{/* (C) 2023 GoodData Corporation */}} +{{ $pageLang := cond (isset .Page.Params "lang") (default "en" (index (split .Page.Params.lang "_") 0)) .Site.Language.Lang }} + + + + + {{ partial "head.html" . }} + {{ partial "meta-version.html" . }} + + + {{ partial "gtm-body.html" }} + {{/* {{ partial "skip-links.html" . }} */}} +
+ {{ partial "navbar.html" . }} +
+
+
+ {{ block "main" . }}{{ end }} +
+ {{ partialCached "footer.html" . }} +
+ {{ partial "custom-scripts.html" . }} + {{ partialCached "scripts.html" . }} + {{ partial "search.html" . }} + + From 7b373a55af9bcef9cc64e04e62c853e08c24ab17 Mon Sep 17 00:00:00 2001 From: ParzivalPavlis Date: Wed, 10 Sep 2025 11:22:02 +0200 Subject: [PATCH 06/13] fix: correct id attribute for main content in multiple layout files risk: low --- docs/layouts/_default/baseof.html | 2 +- docs/layouts/docs/baseof.html | 2 +- docs/layouts/partials/sidebar.html | 98 ++++++++++++++++++++++++++++++ docs/layouts/swagger/baseof.html | 2 +- 4 files changed, 101 insertions(+), 3 deletions(-) create mode 100644 docs/layouts/partials/sidebar.html diff --git a/docs/layouts/_default/baseof.html b/docs/layouts/_default/baseof.html index 5b2cc9c6b..113febb9a 100644 --- a/docs/layouts/_default/baseof.html +++ b/docs/layouts/_default/baseof.html @@ -10,7 +10,7 @@ {{ partial "navbar.html" . }}
-
+
{{ block "main" . }}{{ end }}
{{ partialCached "footer.html" . }} diff --git a/docs/layouts/docs/baseof.html b/docs/layouts/docs/baseof.html index 28e08728f..3f73dad7a 100644 --- a/docs/layouts/docs/baseof.html +++ b/docs/layouts/docs/baseof.html @@ -22,7 +22,7 @@
{{ partial "toc.html" . }}
-
+
{{ partial "version-banner.html" . }} {{ if not .Site.Params.ui.breadcrumb_disable }}{{ partial "breadcrumb.html" . }}{{ end }} {{ if .Draft }} diff --git a/docs/layouts/partials/sidebar.html b/docs/layouts/partials/sidebar.html new file mode 100644 index 000000000..e3a07e387 --- /dev/null +++ b/docs/layouts/partials/sidebar.html @@ -0,0 +1,98 @@ +{{/* (C) 2023 GoodData Corporation */}} + +
+ + +{{ define "root-link" }} + {{ $isCurrent := eq .currentPage .root.FirstSection }} + {{ $active := .active }} + {{ with .root }} + + {{ end }} +{{ end }} + +{{ define "section-tree-nav-sections" }} + {{ $root := .root }} + {{ $site := .site }} + {{ $currentPage := .currentPage }} + {{ $firstInSection := (index $root 0) }} + {{ $isRootSection := eq $firstInSection.Parent .site.Home }} + + {{ if gt (len (where $root.ByWeight "Params.toc_hide" "ne" true)) 0 }} + +
    + {{ range $page := $root.ByWeight }} + {{ $page := $page.Page }} + {{ $pageId := replace (replaceRE "^/|/$" "" $page.RelPermalink) "/" "_" }} + + {{ if and (not (eq $page.Params.toc_hide true)) (not (eq $page $site.Home)) }} + {{ $activePage := eq $page $currentPage }} + {{ $activeSection := or $activePage ($currentPage.IsDescendant $page) }} + {{ $pageId := replace (replaceRE "^/|/$" "" $page.RelPermalink) "/" "_" }} + +
  • + {{ if $page.Params.navigationLabel }} + {{ $page.LinkTitle }} + {{ else }} +
    + {{ if $page.Params.externalLink }} + {{ $page.LinkTitle }} + {{ else }} + {{ $page.LinkTitle }} + {{ end }} + + {{ if $page.Pages }} + + {{ end }} +
    + + {{ if $page.Pages }} +
    + {{ template "section-tree-nav-sections" (dict "root" $page.Pages "currentPage" $currentPage "activeSection" $activeSection "site" $site) }} +
    + {{ end }} + {{ end }} +
  • + + {{ if and $page.Params.navigationLabel $page.Pages }} +
  • + {{ template "section-tree-nav-sections" (dict "root" $page.Pages "currentPage" $currentPage "activeSection" $activeSection "site" $site) }} +
  • + {{ end }} + {{ end }} + {{ end }} +
+ {{ end }} +{{ end }} diff --git a/docs/layouts/swagger/baseof.html b/docs/layouts/swagger/baseof.html index 2043d16ab..ee033d2a4 100644 --- a/docs/layouts/swagger/baseof.html +++ b/docs/layouts/swagger/baseof.html @@ -23,7 +23,7 @@
{{ partial "toc.html" . }}
-
+
{{ if not .Site.Params.ui.breadcrumb_disable }}{{ partial "breadcrumb.html" . }}{{ end }} From 04c4e4ed586962c2e33e01a97055546a1632aa08 Mon Sep 17 00:00:00 2001 From: ParzivalPavlis Date: Wed, 10 Sep 2025 11:56:24 +0200 Subject: [PATCH 07/13] fix: change version selector from anchor to button for better accessibility risk: low --- docs/layouts/partials/navbar-version-selector.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/layouts/partials/navbar-version-selector.html b/docs/layouts/partials/navbar-version-selector.html index e11073a57..fb586a29b 100644 --- a/docs/layouts/partials/navbar-version-selector.html +++ b/docs/layouts/partials/navbar-version-selector.html @@ -9,9 +9,9 @@ {{ $.Scratch.Set "activeVersion" .version }} {{ end }} {{ end }} - +{{ end }} diff --git a/docs/layouts/partials/sidebar-tree.html b/docs/layouts/partials/sidebar-tree.html index 5778b641e..ef0ee6d2d 100644 --- a/docs/layouts/partials/sidebar-tree.html +++ b/docs/layouts/partials/sidebar-tree.html @@ -1,21 +1,93 @@ -{{/* (C) 2023 GoodData Corporation */}} -{{ $additionalNavRoot := .Site.GetPage "/versions" }} -{{ $root := .Site.GetPage "/latest" }} - -{{ if or (eq .FirstSection $additionalNavRoot) (eq .FirstSection .Site.Home) }} - {{- if .Site.Params.versions -}} - {{- $root = index (where .Site.Sections "RelPermalink" (index .Site.Params.versions 0).url) 0 -}} - {{- end -}} -{{ else }} - {{ $root = .FirstSection }} + + + +
+ + +{{ define "root-link" }} + {{ $isCurrent := eq .currentPage .root.FirstSection }} + {{ with .root }} + + {{ end }} {{ end }} -

Python SDK

+{{ define "section-tree-nav-sections" }} + {{ $root := .root }} + {{ $site := .site }} + {{ $currentPage := .currentPage }} + {{ $firstInSection := (index $root 0) }} + {{ $isRootSection := eq $firstInSection.Parent .site.Home }} + + {{ if gt (len (where $root.ByWeight "Params.toc_hide" "ne" true)) 0 }} + +
    + {{ range $page := $root.ByWeight }} + {{ $page := $page.Page }} + {{ $pageId := replace (replaceRE "^/|/$" "" $page.RelPermalink) "/" "_" }} + + {{ if and (not (eq $page.Params.toc_hide true)) (not (eq $page $site.Home)) }} + {{ $activePage := eq $page $currentPage }} + {{ $activeSection := $currentPage.IsDescendant $page }} + {{ $pageId := replace (replaceRE "^/|/$" "" $page.RelPermalink) "/" "_" }} + +
  • + {{ if $page.Params.navigationLabel }} + {{ $page.LinkTitle }} + {{ else }} + {{ if $page.Pages }} + + {{ end }} + +
    + {{ if $page.Params.externalLink }} + {{ $page.LinkTitle }} + {{ else }} + {{ $page.LinkTitle }} + {{ end }} + + {{ if $page.Pages }} + + {{ end }} +
    + {{ end }} + + {{ if $page.Pages }} + {{ template "section-tree-nav-sections" (dict "root" $page.Pages "currentPage" $currentPage "activeSection" $activeSection "site" $site) }} + {{ end }} +
  • + {{ end }} + {{ end }} +
+ {{ end }} +{{ end }} -{{ template "root-link" (dict "currentPage" . "root" $root "site" .Site) }} -{{ if $root.CurrentSection }} -{{ template "section-tree-nav-sections" (dict "root" $root.CurrentSection.Pages "currentPage" . "site" .Site) }} +{{ define "site-title" }} + {{ if .Site.Params.menuTitle }} +

{{ .Site.Params.menuTitle }}

+ {{ end }} {{ end }} -{{ if $additionalNavRoot.CurrentSection }} -{{ template "section-tree-nav-sections" (dict "root" $additionalNavRoot.CurrentSection.Pages "currentPage" . "site" .Site) }} -{{ end }} \ No newline at end of file diff --git a/docs/layouts/partials/sidebar.html b/docs/layouts/partials/sidebar.html index e3a07e387..ff8f87787 100644 --- a/docs/layouts/partials/sidebar.html +++ b/docs/layouts/partials/sidebar.html @@ -1,98 +1 @@ -{{/* (C) 2023 GoodData Corporation */}} - -
- - -{{ define "root-link" }} - {{ $isCurrent := eq .currentPage .root.FirstSection }} - {{ $active := .active }} - {{ with .root }} - - {{ end }} -{{ end }} - -{{ define "section-tree-nav-sections" }} - {{ $root := .root }} - {{ $site := .site }} - {{ $currentPage := .currentPage }} - {{ $firstInSection := (index $root 0) }} - {{ $isRootSection := eq $firstInSection.Parent .site.Home }} - - {{ if gt (len (where $root.ByWeight "Params.toc_hide" "ne" true)) 0 }} - -
    - {{ range $page := $root.ByWeight }} - {{ $page := $page.Page }} - {{ $pageId := replace (replaceRE "^/|/$" "" $page.RelPermalink) "/" "_" }} - - {{ if and (not (eq $page.Params.toc_hide true)) (not (eq $page $site.Home)) }} - {{ $activePage := eq $page $currentPage }} - {{ $activeSection := or $activePage ($currentPage.IsDescendant $page) }} - {{ $pageId := replace (replaceRE "^/|/$" "" $page.RelPermalink) "/" "_" }} - -
  • - {{ if $page.Params.navigationLabel }} - {{ $page.LinkTitle }} - {{ else }} -
    - {{ if $page.Params.externalLink }} - {{ $page.LinkTitle }} - {{ else }} - {{ $page.LinkTitle }} - {{ end }} - - {{ if $page.Pages }} - - {{ end }} -
    - - {{ if $page.Pages }} -
    - {{ template "section-tree-nav-sections" (dict "root" $page.Pages "currentPage" $currentPage "activeSection" $activeSection "site" $site) }} -
    - {{ end }} - {{ end }} -
  • - - {{ if and $page.Params.navigationLabel $page.Pages }} -
  • - {{ template "section-tree-nav-sections" (dict "root" $page.Pages "currentPage" $currentPage "activeSection" $activeSection "site" $site) }} -
  • - {{ end }} - {{ end }} - {{ end }} -
- {{ end }} -{{ end }} +{{ partial "sidebar-tree.html" . }} From f8ee91e51397d434a636714a99a8c623a6d5dea6 Mon Sep 17 00:00:00 2001 From: ParzivalPavlis Date: Wed, 10 Sep 2025 12:50:59 +0200 Subject: [PATCH 10/13] fix: update gooddata-docs-theme dependency to correct version risk: low --- docs/go.mod | 2 +- docs/go.sum | 2 -- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/docs/go.mod b/docs/go.mod index 5a06e5906..cc53e23da 100644 --- a/docs/go.mod +++ b/docs/go.mod @@ -4,7 +4,7 @@ go 1.20 require ( github.com/FortAwesome/Font-Awesome v0.0.0-20230327165841-0698449d50f2 // indirect - github.com/gooddata/gooddata-docs-theme v0.0.0-20250821103203-74c7725a1374 // indirect + github.com/gooddata/gooddata-docs-theme v0.0.0-20250814105944-65486e0f9cfb // indirect github.com/google/docsy v0.7.1 // indirect github.com/google/docsy/dependencies v0.7.1 // indirect github.com/twbs/bootstrap v5.3.1+incompatible // indirect diff --git a/docs/go.sum b/docs/go.sum index e892d6179..2de30edde 100644 --- a/docs/go.sum +++ b/docs/go.sum @@ -34,8 +34,6 @@ github.com/gooddata/gooddata-docs-theme v0.0.0-20250813103715-562a4a4e4a75 h1:sw github.com/gooddata/gooddata-docs-theme v0.0.0-20250813103715-562a4a4e4a75/go.mod h1:VVNP6Cmo+vC37RD3T/YHjyU/QdqftGY5z4G513LYyrA= github.com/gooddata/gooddata-docs-theme v0.0.0-20250814105944-65486e0f9cfb h1:acb17FkbyBJjZ4e/DvIf5xJ2S/XkpF+fQqa9lNP+8LM= github.com/gooddata/gooddata-docs-theme v0.0.0-20250814105944-65486e0f9cfb/go.mod h1:VVNP6Cmo+vC37RD3T/YHjyU/QdqftGY5z4G513LYyrA= -github.com/gooddata/gooddata-docs-theme v0.0.0-20250821103203-74c7725a1374 h1:pdQfwqjy/PW2CBh0HlMtgnsSuNHNLP+SyWlACDhSBnU= -github.com/gooddata/gooddata-docs-theme v0.0.0-20250821103203-74c7725a1374/go.mod h1:VVNP6Cmo+vC37RD3T/YHjyU/QdqftGY5z4G513LYyrA= github.com/google/docsy v0.7.1 h1:DUriA7Nr3lJjNi9Ulev1SfiG1sUYmvyDeU4nTp7uDxY= github.com/google/docsy v0.7.1/go.mod h1:JCmE+c+izhE0Rvzv3y+AzHhz1KdwlA9Oj5YBMklJcfc= github.com/google/docsy/dependencies v0.7.1 h1:NbzYKJYMin2q50xdWSUzR2c9gCp7zR/XHDBcxklEcTQ= From c81feb4a2cc6b0edb52832a3e8a2d2b745b62088 Mon Sep 17 00:00:00 2001 From: ParzivalPavlis Date: Wed, 10 Sep 2025 12:58:01 +0200 Subject: [PATCH 11/13] fix: remove unused prism-accessibility.js script for cleaner code risk: low --- docs/layouts/partials/hooks/body-end.html | 2 -- 1 file changed, 2 deletions(-) diff --git a/docs/layouts/partials/hooks/body-end.html b/docs/layouts/partials/hooks/body-end.html index 8f159e7c1..d808b0ab0 100644 --- a/docs/layouts/partials/hooks/body-end.html +++ b/docs/layouts/partials/hooks/body-end.html @@ -5,5 +5,3 @@ - - From f6309eb87080b1563061394819adb8e45ec1797a Mon Sep 17 00:00:00 2001 From: ParzivalPavlis Date: Wed, 10 Sep 2025 14:11:29 +0200 Subject: [PATCH 12/13] feat: add skip links partial for improved accessibility risk: low --- docs/layouts/api-reference/baseof.html | 1 - docs/layouts/partials/skip-links.html | 4 ++++ 2 files changed, 4 insertions(+), 1 deletion(-) create mode 100644 docs/layouts/partials/skip-links.html diff --git a/docs/layouts/api-reference/baseof.html b/docs/layouts/api-reference/baseof.html index 069ba7c50..349503649 100644 --- a/docs/layouts/api-reference/baseof.html +++ b/docs/layouts/api-reference/baseof.html @@ -9,7 +9,6 @@ {{ partial "gtm-body.html" }} - {{/* {{ partial "skip-links.html" . }} */}}
{{ partial "navbar.html" . }}
diff --git a/docs/layouts/partials/skip-links.html b/docs/layouts/partials/skip-links.html new file mode 100644 index 000000000..7d501800c --- /dev/null +++ b/docs/layouts/partials/skip-links.html @@ -0,0 +1,4 @@ +{{/* (C) 2023 GoodData Corporation */}} + From 53b266fbcb6b3688db758d2f552d109dbe036d7a Mon Sep 17 00:00:00 2001 From: ParzivalPavlis Date: Wed, 10 Sep 2025 14:15:29 +0200 Subject: [PATCH 13/13] fix: update gooddata-docs-theme dependency to latest version risk: low --- docs/go.mod | 2 +- docs/go.sum | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/docs/go.mod b/docs/go.mod index cc53e23da..5a06e5906 100644 --- a/docs/go.mod +++ b/docs/go.mod @@ -4,7 +4,7 @@ go 1.20 require ( github.com/FortAwesome/Font-Awesome v0.0.0-20230327165841-0698449d50f2 // indirect - github.com/gooddata/gooddata-docs-theme v0.0.0-20250814105944-65486e0f9cfb // indirect + github.com/gooddata/gooddata-docs-theme v0.0.0-20250821103203-74c7725a1374 // indirect github.com/google/docsy v0.7.1 // indirect github.com/google/docsy/dependencies v0.7.1 // indirect github.com/twbs/bootstrap v5.3.1+incompatible // indirect diff --git a/docs/go.sum b/docs/go.sum index 2de30edde..e892d6179 100644 --- a/docs/go.sum +++ b/docs/go.sum @@ -34,6 +34,8 @@ github.com/gooddata/gooddata-docs-theme v0.0.0-20250813103715-562a4a4e4a75 h1:sw github.com/gooddata/gooddata-docs-theme v0.0.0-20250813103715-562a4a4e4a75/go.mod h1:VVNP6Cmo+vC37RD3T/YHjyU/QdqftGY5z4G513LYyrA= github.com/gooddata/gooddata-docs-theme v0.0.0-20250814105944-65486e0f9cfb h1:acb17FkbyBJjZ4e/DvIf5xJ2S/XkpF+fQqa9lNP+8LM= github.com/gooddata/gooddata-docs-theme v0.0.0-20250814105944-65486e0f9cfb/go.mod h1:VVNP6Cmo+vC37RD3T/YHjyU/QdqftGY5z4G513LYyrA= +github.com/gooddata/gooddata-docs-theme v0.0.0-20250821103203-74c7725a1374 h1:pdQfwqjy/PW2CBh0HlMtgnsSuNHNLP+SyWlACDhSBnU= +github.com/gooddata/gooddata-docs-theme v0.0.0-20250821103203-74c7725a1374/go.mod h1:VVNP6Cmo+vC37RD3T/YHjyU/QdqftGY5z4G513LYyrA= github.com/google/docsy v0.7.1 h1:DUriA7Nr3lJjNi9Ulev1SfiG1sUYmvyDeU4nTp7uDxY= github.com/google/docsy v0.7.1/go.mod h1:JCmE+c+izhE0Rvzv3y+AzHhz1KdwlA9Oj5YBMklJcfc= github.com/google/docsy/dependencies v0.7.1 h1:NbzYKJYMin2q50xdWSUzR2c9gCp7zR/XHDBcxklEcTQ=