28 | {{- .Title -}} 29 |
30 |{{ .Description | markdownify -}}
31 |├── .nvmrc ├── assets ├── scss │ ├── support │ │ ├── _rtl.scss │ │ ├── _bootstrap_vers_test.scss │ │ ├── _utilities.scss │ │ └── _mixins.scss │ ├── _swagger.scss │ ├── shortcodes.scss │ ├── blocks │ │ ├── _blocks.scss │ │ └── _cover.scss │ ├── _styles_project.scss │ ├── _variables_project.scss │ ├── _variables_project_after_bs.scss │ ├── section-index.scss │ ├── td │ │ ├── _code-dark.scss │ │ └── _color-adjustments-dark.scss │ ├── _breadcrumb.scss │ ├── _table.scss │ ├── _alerts.scss │ ├── shortcodes │ │ ├── cards-pane.scss │ │ └── tabbed-pane.scss │ ├── _blog.scss │ ├── _pageinfo.scss │ ├── _main-container.scss │ ├── _drawio.scss │ ├── _colors.scss │ ├── _variables.scss │ ├── _variables_forward.scss │ ├── _code.scss │ └── _content.scss ├── icons │ └── logo.png ├── _vendor │ └── README.md ├── js │ ├── markmap.js │ ├── search.js │ └── click-to-copy.js ├── stubs │ └── new-page-template.md ├── _cache │ ├── bootstrap │ │ ├── method.patch │ │ ├── scrollspy-method.js │ │ └── scrollspy-method-patched.js │ └── README.md └── json │ └── offline-search-index.json ├── layouts ├── _partials │ ├── hooks │ │ ├── body-end.html │ │ └── head-end.html │ ├── print │ │ ├── toc-li-blog.html │ │ ├── toc-li.html │ │ ├── page-heading.html │ │ ├── content.html │ │ ├── content-blog.html │ │ └── render.html │ ├── page-description.html │ ├── footer │ │ ├── left.html │ │ ├── right.html │ │ ├── links.html │ │ ├── center.html │ │ └── copyright.html │ ├── reading-time.html │ ├── outputformat.html │ ├── page-meta-lastmod.html │ ├── td │ │ ├── render-heading.html │ │ └── scrollspy-attr.txt │ ├── scripts │ │ ├── math.html │ │ └── katex.html │ ├── taxonomy_terms_article.html │ ├── navbar-version-selector.html │ ├── footer.html │ ├── pager.html │ ├── toc.html │ ├── featured-image.html │ ├── taxonomy_terms_article_wrapper.html │ ├── version-banner.html │ ├── taxonomy_terms_cloud.html │ ├── taxonomy_terms_clouds.html │ ├── breadcrumb.html │ ├── disqus-comment.html │ ├── favicons.html │ ├── head-css.html │ ├── community_links.html │ ├── navbar-lang-selector.html │ ├── section-index.html │ ├── feedback.html │ ├── dark-mode-config.html │ └── search-input.html ├── _td-content-after-header.html ├── all.html ├── _markup │ ├── render-codeblock-chem.html │ ├── render-codeblock-math.html │ └── render-codeblock-mermaid.html ├── blog │ ├── single.html │ ├── section.print.html │ ├── _td-content.html │ ├── baseof.print.html │ ├── list.html │ └── baseof.html ├── docs │ ├── single.html │ ├── list.print.html │ ├── list.html │ ├── baseof.print.html │ └── baseof.html ├── swagger │ ├── single.html │ ├── list.html │ └── baseof.html ├── _shortcodes │ ├── cardpane.html │ ├── pageinfo.html │ ├── comment.html │ ├── swaggerui.html │ ├── blocks │ │ ├── link-down.html │ │ ├── feature.html │ │ ├── section.html │ │ └── lead.html │ ├── alert.html │ ├── iframe.html │ ├── imgproc.html │ ├── card.html │ ├── readfile.html │ ├── _param.html │ ├── conditional-text.html │ └── tab.html ├── 404.html ├── taxonomy.html ├── community │ └── list.html ├── search.html ├── _td-content.html ├── baseof.html └── term.html ├── images ├── tn.png └── screenshot.png ├── .gitattributes ├── docsy.dev ├── .gitignore ├── content │ └── en │ │ ├── search.md │ │ ├── blog │ │ ├── 2022 │ │ │ └── hello.md │ │ └── _index.md │ │ ├── featured-background.jpg │ │ ├── about │ │ └── featured-background.jpg │ │ ├── docs │ │ ├── content │ │ │ ├── shortcodes │ │ │ │ ├── spruce.jpg │ │ │ │ ├── flags │ │ │ │ │ ├── de.png │ │ │ │ │ ├── tz.png │ │ │ │ │ └── uk.png │ │ │ │ └── includes │ │ │ │ │ ├── config.yaml │ │ │ │ │ └── installation.md │ │ │ └── _index.md │ │ ├── best-practices │ │ │ ├── _index.md │ │ │ └── site-guidance.md │ │ ├── updating │ │ │ ├── updating-hugo-module.md │ │ │ ├── _index.md │ │ │ └── updating-submodules.md │ │ └── get-started │ │ │ ├── docsy-as-module │ │ │ └── _index.md │ │ │ └── known_issues.md │ │ ├── community │ │ └── _index.md │ │ ├── site │ │ ├── readme.md │ │ ├── repo │ │ │ └── _index.md │ │ ├── implementation │ │ │ └── _index.md │ │ └── _index.md │ │ ├── tests │ │ └── index.md │ │ └── _index.md ├── static │ ├── google6a6ae8b5b016a20d.html │ └── images │ │ ├── no.png │ │ ├── yes.png │ │ ├── feedback.png │ │ └── version-banner.png ├── layouts │ ├── docs │ │ └── content │ │ │ └── diagrams-and-formulae │ │ │ └── _markup │ │ │ └── render-passthrough.html │ ├── _markup │ │ └── render-heading.html │ └── _shortcodes │ │ └── release-summary.md ├── assets │ └── scss │ │ ├── _styles_project.scss │ │ └── _variables_project.scss ├── .prettierignore ├── scripts │ ├── install-hugo.sh │ ├── unescape-refcache-json.mjs │ └── prune-refcache-4xx.mjs ├── .htmltest.yml ├── CONTRIBUTING.md ├── Makefile └── package.json ├── .prettierrc.json ├── static └── favicons │ ├── favicon.ico │ ├── tile70x70.png │ ├── favicon-1024.png │ ├── favicon-256.png │ ├── pwa-192x192.png │ ├── pwa-512x512.png │ ├── tile150x150.png │ ├── tile310x150.png │ ├── tile310x310.png │ ├── android-144x144.png │ ├── android-192x192.png │ ├── android-36x36.png │ ├── android-48x48.png │ ├── android-72x72.png │ ├── android-96x96.png │ ├── favicon-16x16.png │ ├── favicon-32x32.png │ └── apple-touch-icon-180x180.png ├── CHANGELOG.md ├── CONTRIBUTING.md ├── .editorconfig ├── go.mod ├── docker-compose.yaml ├── .github ├── ISSUE_TEMPLATE │ ├── enhancement.md │ ├── config.yml │ └── bug.md └── workflows │ ├── test.yaml │ └── smoke.yaml ├── .prettierignore ├── go.sum ├── .gitignore ├── Dockerfile ├── .markdownlint.yaml ├── theme.toml ├── .vscode └── cspell.json ├── postcss.config.js ├── .markdownlint-cli2.yaml ├── netlify.toml ├── scripts ├── get-build-id.sh ├── refresh-sass-variables.pl ├── git │ └── check-version.sh ├── gen-chroma-styles.sh ├── getHugoModules │ └── index.mjs ├── mkdirp-hugo-mod.js └── scrollspy-patch │ └── extract-method.pl ├── i18n ├── zh-cn.toml ├── zh-tw.toml ├── ko.toml ├── it.toml ├── pl.toml ├── no.toml ├── et.toml ├── fi.toml ├── bg.toml ├── ja.toml ├── sv.toml ├── hi.toml ├── hu.toml ├── nl.toml ├── bn.toml └── fa.toml └── hugo.yaml /.nvmrc: -------------------------------------------------------------------------------- 1 | lts/* 2 | -------------------------------------------------------------------------------- /assets/scss/support/_rtl.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /layouts/_partials/hooks/body-end.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /layouts/_partials/hooks/head-end.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /layouts/_td-content-after-header.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /images/tn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/docsy/HEAD/images/tn.png -------------------------------------------------------------------------------- /layouts/all.html: -------------------------------------------------------------------------------- 1 | {{ define "main" -}} 2 | {{ .Content -}} 3 | {{ end }} 4 | -------------------------------------------------------------------------------- /layouts/_markup/render-codeblock-chem.html: -------------------------------------------------------------------------------- 1 | {{ partial "scripts/math.html" . -}} 2 | -------------------------------------------------------------------------------- /layouts/_markup/render-codeblock-math.html: -------------------------------------------------------------------------------- 1 | {{ partial "scripts/math.html" . -}} 2 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto eol=lf 2 | *.cmd text eol=crlf 3 | *.bat text eol=crlf 4 | -------------------------------------------------------------------------------- /docsy.dev/.gitignore: -------------------------------------------------------------------------------- 1 | # Hugo 2 | .hugo_build.lock 3 | /public 4 | resources/ 5 | tmp 6 | -------------------------------------------------------------------------------- /assets/icons/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/docsy/HEAD/assets/icons/logo.png -------------------------------------------------------------------------------- /images/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/docsy/HEAD/images/screenshot.png -------------------------------------------------------------------------------- /layouts/blog/single.html: -------------------------------------------------------------------------------- 1 | {{ define "main" }} 2 | {{ .Render "_td-content" }} 3 | {{ end }} -------------------------------------------------------------------------------- /layouts/docs/single.html: -------------------------------------------------------------------------------- 1 | {{ define "main" }} 2 | {{ .Render "_td-content" }} 3 | {{ end }} -------------------------------------------------------------------------------- /layouts/swagger/single.html: -------------------------------------------------------------------------------- 1 | {{ define "main" }} 2 | {{ .Render "_td-content" }} 3 | {{ end }} -------------------------------------------------------------------------------- /assets/scss/_swagger.scss: -------------------------------------------------------------------------------- 1 | .swagger-ui .info .title small pre { 2 | background: #7d8492; 3 | } -------------------------------------------------------------------------------- /docsy.dev/content/en/search.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Search Results 3 | layout: search 4 | --- 5 | 6 | -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "proseWrap": "always", 3 | "semi": true, 4 | "singleQuote": true 5 | } 6 | -------------------------------------------------------------------------------- /assets/scss/shortcodes.scss: -------------------------------------------------------------------------------- 1 | @import "shortcodes/tabbed-pane"; 2 | @import "shortcodes/cards-pane"; 3 | -------------------------------------------------------------------------------- /docsy.dev/content/en/blog/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Blog 3 | menu: { main: { weight: 50 } } 4 | --- 5 | -------------------------------------------------------------------------------- /docsy.dev/static/google6a6ae8b5b016a20d.html: -------------------------------------------------------------------------------- 1 | google-site-verification: google6a6ae8b5b016a20d.html 2 | -------------------------------------------------------------------------------- /layouts/docs/list.print.html: -------------------------------------------------------------------------------- 1 | {{ define "main" }} 2 | {{ partial "print/render" . }} 3 | {{ end }} 4 | -------------------------------------------------------------------------------- /static/favicons/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/docsy/HEAD/static/favicons/favicon.ico -------------------------------------------------------------------------------- /docsy.dev/static/images/no.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/docsy/HEAD/docsy.dev/static/images/no.png -------------------------------------------------------------------------------- /layouts/blog/section.print.html: -------------------------------------------------------------------------------- 1 | {{ define "main" }} 2 | {{ partial "print/render" . }} 3 | {{ end }} 4 | -------------------------------------------------------------------------------- /static/favicons/tile70x70.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/docsy/HEAD/static/favicons/tile70x70.png -------------------------------------------------------------------------------- /docsy.dev/static/images/yes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/docsy/HEAD/docsy.dev/static/images/yes.png -------------------------------------------------------------------------------- /static/favicons/favicon-1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/docsy/HEAD/static/favicons/favicon-1024.png -------------------------------------------------------------------------------- /static/favicons/favicon-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/docsy/HEAD/static/favicons/favicon-256.png -------------------------------------------------------------------------------- /static/favicons/pwa-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/docsy/HEAD/static/favicons/pwa-192x192.png -------------------------------------------------------------------------------- /static/favicons/pwa-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/docsy/HEAD/static/favicons/pwa-512x512.png -------------------------------------------------------------------------------- /static/favicons/tile150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/docsy/HEAD/static/favicons/tile150x150.png -------------------------------------------------------------------------------- /static/favicons/tile310x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/docsy/HEAD/static/favicons/tile310x150.png -------------------------------------------------------------------------------- /static/favicons/tile310x310.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/docsy/HEAD/static/favicons/tile310x310.png -------------------------------------------------------------------------------- /layouts/_partials/print/toc-li-blog.html: -------------------------------------------------------------------------------- 1 |
4 | {{- .Inner -}}
5 |
6 |
--------------------------------------------------------------------------------
/docsy.dev/content/en/docs/content/shortcodes/spruce.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/docsy/HEAD/docsy.dev/content/en/docs/content/shortcodes/spruce.jpg
--------------------------------------------------------------------------------
/docsy.dev/content/en/docs/content/shortcodes/flags/de.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/docsy/HEAD/docsy.dev/content/en/docs/content/shortcodes/flags/de.png
--------------------------------------------------------------------------------
/docsy.dev/content/en/docs/content/shortcodes/flags/tz.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/docsy/HEAD/docsy.dev/content/en/docs/content/shortcodes/flags/tz.png
--------------------------------------------------------------------------------
/docsy.dev/content/en/docs/content/shortcodes/flags/uk.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/docsy/HEAD/docsy.dev/content/en/docs/content/shortcodes/flags/uk.png
--------------------------------------------------------------------------------
/assets/scss/_styles_project.scss:
--------------------------------------------------------------------------------
1 | /*
2 | Projects can override this file. For details, see:
3 | https://www.docsy.dev/docs/content/lookandfeel/#project-style-files
4 | */
5 |
--------------------------------------------------------------------------------
/assets/scss/_variables_project.scss:
--------------------------------------------------------------------------------
1 | /*
2 | Projects can override this file. For details, see:
3 | https://www.docsy.dev/docs/content/lookandfeel/#project-style-files
4 | */
5 |
--------------------------------------------------------------------------------
/docsy.dev/content/en/community/_index.md:
--------------------------------------------------------------------------------
1 | ---
2 | title: Community
3 | menu: {main: {weight: 40}}
4 | # Content below, if any, will be added to the community page.
5 | ---
6 |
--------------------------------------------------------------------------------
/layouts/_partials/page-description.html:
--------------------------------------------------------------------------------
1 | {{ with or .Description .Summary site.Params.description | plainify | htmlUnescape -}}
2 | {{ trim . "\n\r\t " -}}
3 | {{ end -}}
4 |
--------------------------------------------------------------------------------
/layouts/_partials/footer/left.html:
--------------------------------------------------------------------------------
1 | {{ with .Site.Params.links -}}
2 | {{ with index . "user" -}}
3 | {{- partial "footer/links.html" . -}}
4 | {{ end -}}
5 | {{ end -}}
6 |
--------------------------------------------------------------------------------
/assets/scss/_variables_project_after_bs.scss:
--------------------------------------------------------------------------------
1 | /*
2 | Projects can override this file. For details, see:
3 | https://www.docsy.dev/docs/content/lookandfeel/#project-style-files
4 | */
5 |
--------------------------------------------------------------------------------
/docsy.dev/assets/scss/_variables_project.scss:
--------------------------------------------------------------------------------
1 | /*
2 | Projects can override this file. For details, see:
3 | https://www.docsy.dev/docs/content/lookandfeel/#project-style-files
4 | */
5 |
--------------------------------------------------------------------------------
/layouts/_partials/footer/right.html:
--------------------------------------------------------------------------------
1 | {{ with .Site.Params.links -}}
2 | {{ with index . "developer" -}}
3 | {{- partial "footer/links.html" . -}}
4 | {{ end -}}
5 | {{ end -}}
6 |
--------------------------------------------------------------------------------
/CHANGELOG.md:
--------------------------------------------------------------------------------
1 | # Changelog
2 |
3 | The changelog is published online, see
4 | [Changelog](https://www.docsy.dev/site/changelog/) or the
5 | [page source](docsy.dev/content/en/site/changelog.md).
6 |
--------------------------------------------------------------------------------
/docsy.dev/content/en/docs/content/_index.md:
--------------------------------------------------------------------------------
1 | ---
2 | title: Content and Customization
3 | weight: 3
4 | description: How to add content to and customize your Docsy site.
5 | sidebar_root_for: self
6 | ---
7 |
--------------------------------------------------------------------------------
/layouts/_shortcodes/pageinfo.html:
--------------------------------------------------------------------------------
1 | {{ $_hugo_config := `{ "version": 1 }` }}
2 | {{ $color := .Get "color" | default "primary" }}
3 | Oops! This page doesn't exist. Try going back to the home page.
5 |{{ if gt .ReadingTime 1 }} {{ .ReadingTime }} {{ T "post_reading_time" }} {{ else }} {{ T "post_less_than_a_minute_read" }} {{ end }}
2 | -------------------------------------------------------------------------------- /layouts/taxonomy.html: -------------------------------------------------------------------------------- 1 | {{ define "main" -}} 2 |{{ with $.Get "url_text" }}{{ . }}{{ else }}{{ T "ui_read_more" }}{{ end }}
{{ end }} 13 |{{ T "community_introduce" . }}
12 | 13 |Version {{ . | markdownify }} of the 9 | documentation is no longer actively maintained. The site that you are 10 | currently viewing is an archived snapshot. 11 | {{ with $latest_version }}For up-to-date documentation, see the 12 | latest version.
13 | {{ end }} 14 | {{ end }} 15 |{{ T "community_using" . }}
8 | {{ with index $links "user" -}} 9 | {{ template "community-links-list" . -}} 10 | {{ end }} 11 |{{ T "community_contribute" . }}
15 | {{ with index $links "developer" -}} 16 | {{ template "community-links-list" . -}} 17 | {{ end }} 18 |19 | {{ T "community_how_to" . }} 20 | {{ T "community_guideline" }}. 21 |
22 |
22 | {{/* Do **not** remove this comment! It ends above html block! See https://spec.commonmark.org/0.30/#html-blocks, 7. */}}
23 | {{ . }}{{ with $image.Params.byline }}
{{ . }}{{ end }}
24 |
37 | {{ . -}} 38 |
39 | {{ end -}} 40 | {{ end -}} 41 |The file {{ $.Scratch.Get "filepath" }} was not found.
{{ .Description | markdownify }}
20 |24 | {{- .Date.Format ($.Param "time_format_blog") }} {{ T "ui_in"}} {{ .CurrentSection.LinkTitle -}} 25 |
26 |{{ .Plain | safeHTML | truncate 250 }}
34 | 35 |{{ .Description | markdownify -}}
31 |44 | {{ T "print_printable_section" }} 45 | {{ T "print_click_to_print" }}. 46 |
47 | {{ T "print_show_regular" }}. 48 |
49 |{{- i18n "feedback_question" -}}
21 | 22 | 23 |24 | {{ .yes | safeHTML }} 25 |
26 |27 | {{ .no | safeHTML }} 28 |
29 |