docsy
docsy copied to clipboard
A set of Hugo doc templates for launching open source content.
Approved by PSC -- see [Convert config files to YAML](https://groups.google.com/g/docsy-psc/c/ZdFEvAWqF_o/m/u1QXM9pmAgAJ).
To do so, add the following to `_styles_project.scss`: ```css .td-breadcrumbs__single { display: none !important; } ```
I just skimmed through our sites, looking for minimum required hugo version. That's what I found: `README.md`, section [prerequisites](https://github.com/google/docsy/#prerequisites): we recommend version 0.53 or later [`theme.toml`](https://github.com/google/docsy/blob/master/theme.toml): min_version = 0.53 -...
From https://github.com/google/docsy/pull/1011#discussion_r905886458: > ... remove (all?) the ARIA related labels for the taxonomy-list usage ... or maybe just use a regex to strip all aria labels from breadcrumbs in taxonomy...
This add supports for [GLFM's math blocks](https://docs.gitlab.com/ee/user/markdown.html#math) using [hugo's Markdown render hooks](https://gohugo.io/templates/render-hooks/#render-hooks-for-code-blocks).
Probably not using the right terms, but if you nest a Markdown table inside a folding/summary block, the table doesn't get rendered. Searched and didn't see an issue (open or...
Useful when the left-side toc is longer than the screen. Fixes https://github.com/google/docsy/issues/348 and https://github.com/google/docsy/issues/257 This is an update of the original patch of narrenfrei Notes: - It seems that on...
This switches Mermaid to use [hugo's Markdown render hooks](https://gohugo.io/templates/render-hooks/#render-hooks-for-code-blocks ) instead of manipulating the string at runtime, which should improve page loading performance by a tiny bit. Similar to #987,...
The existing navbar is a little limited on small screens. Depending on the site, some menu items get cut off, and the search bar is left off. Dropdown menus are...