Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions assets/scss/td/_sidebar-toc.scss
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@
//
.td-sidebar-toc {
@include link-decoration;
display: none;
@extend .d-print-none;
@extend .d-xl-block;
@extend .col-xl-2;

border-left: 1px solid var(--bs-border-color);

Expand Down
19 changes: 16 additions & 3 deletions docsy.dev/content/en/blog/2025/0.13.0.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
title: Release 0.13.0 report and upgrade guide
linkTitle: Release 0.13.0
date: 2025-11-24
lastmod: 2026-02-02
lastmod: 2026-02-07
author: >-
[Patrice Chalin](https://github.com/chalin) ([CNCF](https://www.cncf.io/)),
for the [Docsy Steering Committee](/blog/2022/hello/#introducing-the-psc)
Expand Down Expand Up @@ -141,15 +141,15 @@ For implementation details, see [#2035], [#2001], and PR [#2303].
[lang-menu]: /docs/content/navigation/#language-menu
[#2303]: https://github.com/google/docsy/pull/2303

### Mobile navbar scroll indicators
### {{% _param NEW %}} Mobile navbar scroll indicators {#mobile-navbar-scroll-indicators}

The navbar now shows left/right scroll indicators when the navigation menu
overflows (mainly for narrow viewports), making it easier for users to discover
additional navigation items ([#2406]).

[#2406]: https://github.com/google/docsy/pull/2406

## {{% _param FAS code "" %}} Alert shortcode improvements {#alert-shortcode}
## {{% _param BREAKING %}} Alert shortcode improvements {#alert-shortcode}

As of Docsy 0.13.0, `alert` shortcode content is processed differently when
called as Markdown (`{{%/* alert */%}}`): the inner Markdown is now passed
Expand All @@ -167,6 +167,19 @@ This change means that your alerts can now:
For details and examples, including important formatting requirements, see
[alert]. For implementation details, see PR [#941].

**Action required**: Applies if you use the `alert` in `.html` content files
with Markdown in the body.

Use Hugo's shortcode [Markdown call syntax][]: `{{%/* */%}}`. Otherwise,
Markdown content might not render correctly.

**Sanity check**: sample the rendering of pages that contain `alert` shortcodes,
whether in Markdown or HTML content files. Ensure that the alert renders as
expected.

[Markdown call syntax]:
https://gohugo.io/content-management/shortcodes/#notation

## {{% _param FAS universal-access info %}} Accessibility improvements {#accessibility}

- <i class="fa-solid fa-palette fa-lg text-info px-1"></i> **Color contrast**
Expand Down
2 changes: 1 addition & 1 deletion docsy.dev/content/en/blog/2026/0.14.0.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
title: Release 0.14.0 report and upgrade guide
linkTitle: Release 0.14.0
date: 2026-02-04
date: 2026-02-07
author: >-
[Patrice Chalin](https://github.com/chalin) ([CNCF](https://www.cncf.io/)),
for the [Docsy Steering Committee](/blog/2022/hello/#introducing-the-psc)
Expand Down
2 changes: 1 addition & 1 deletion layouts/blog/baseof.html
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
<aside class="col-12 col-md-3 col-xl-2 td-sidebar d-print-none">
{{ partial "sidebar.html" . }}
</aside>
<aside class="d-none d-xl-block col-xl-2 td-sidebar-toc d-print-none">
<aside class="td-sidebar-toc">
{{ partial "page-meta-links.html" . }}
{{ partial "toc.html" . }}
{{ partial "taxonomy_terms_clouds.html" . }}
Expand Down
2 changes: 1 addition & 1 deletion layouts/docs/baseof.html
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
<aside class="col-12 col-md-3 col-xl-2 td-sidebar d-print-none">
{{ partial "sidebar.html" . }}
</aside>
<aside class="d-none d-xl-block col-xl-2 td-sidebar-toc d-print-none">
<aside class="td-sidebar-toc">
{{ partial "page-meta-links.html" . }}
{{ partial "toc.html" . }}
{{ partial "taxonomy_terms_clouds.html" . }}
Expand Down
2 changes: 1 addition & 1 deletion layouts/swagger/baseof.html
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<aside class="col-12 col-md-3 col-xl-2 td-sidebar d-print-none">
{{ partial "sidebar.html" . }}
</aside>
<aside class="d-none d-xl-block col-xl-2 td-sidebar-toc d-print-none">
<aside class="td-sidebar-toc">
{{ partial "page-meta-links.html" . }}
{{ partial "toc.html" . }}
{{ partial "taxonomy_terms_clouds.html" . }}
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "docsy",
"version": "0.14.0-dev+97-g6230b09e",
"version": "0.14.0-dev+98-gcc2d0569",
"repository": "github:google/docsy",
"homepage": "https://www.docsy.dev",
"license": "Apache-2.0",
Expand Down
Loading