Skip to content

Commit

Permalink
update: source github.com/jsonnet-libs/k8s@c97cb7d5
Browse files Browse the repository at this point in the history
  • Loading branch information
Duologic authored and jsonnet-libs-bot committed Mar 5, 2024
1 parent 5ce94ae commit ac70d48
Show file tree
Hide file tree
Showing 3 changed files with 57 additions and 4 deletions.
49 changes: 48 additions & 1 deletion docs/stylesheets/extra.css
Original file line number Diff line number Diff line change
@@ -1 +1,48 @@
.md-nav__link:first-letter { text-transform: lowercase; }
/* Menu */
/* Decapitalize menu items, Mkdocs capilizes by default and can't be configured */
nav nav .md-nav__link .md-ellipsis::first-letter { text-transform: lowercase }

/* TOC */
/* Don't wrap TOC links with spaces */
.md-sidebar--secondary .md-nav__item { white-space: nowrap }
/* Scroll horizontal to make them accessible */
.md-sidebar--secondary .md-sidebar__scrollwrap { overflow-x: auto }

/* Code */
/* Make codeblocks stand out */
.md-typeset pre>code { border-left: 0.2rem solid var(--md-accent-fg-color) }

/* Headings */
/* Hide headings for functions but don't remove them, they function as deeplink targets */
h2[id^="fn-"],
h3[id^="fn-"],
h4[id^="fn-"],
h5[id^="fn-"],
h6[id^="fn-"],
h7[id^="fn-"],
h8[id^="fn-"],
h9[id^="fn-"] {
visibility: hidden;
width: 0;
height: 0;
padding: 0;
margin: 0;
}

/* Parameters */
/* Format 'PARAMETERS' after highlight (div.highlight) */
/* Match first paragraph (p) but only if it is followed by an unsorted list (ul) */
article.md-content__inner.md-typeset div.highlight+p:has(+ul) {
padding-left: 1em;
margin-top: 0;
margin-bottom: 0;
}
/* Match first unsorted list (ul) after paragraph (p) */
article.md-content__inner.md-typeset div.highlight+p+ul {
padding-left: 1em;
margin-top:0;
}
article.md-content__inner.md-typeset div.highlight+p+ul li {
margin-top: 0;
margin-bottom: 0;
}
9 changes: 6 additions & 3 deletions mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@
"markdown_extensions":
- "pymdownx.highlight"
- "pymdownx.superfences"
- "mdx_truly_sane_lists":
"nested_indent": 2
"truly_sane": true
"plugins":
- "search":
"indexing": "titles"
"min_search_length": 2
"prebuild_index": true
"separator": "[\\s\\-\\.]+"
- "minify":
"minify_html": true
Expand All @@ -17,6 +17,9 @@
"site_name": "fluxcd jsonnet library"
"site_url": "https://jsonnet-libs.github.io/fluxcd-libsonnet"
"theme":
"features":
- "navigation.tabs"
- "navigation.indexes"
"name": "material"
"palette":
- "accent": "indigo"
Expand Down
3 changes: 3 additions & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,6 @@ mkdocs-minify-plugin>=0.3

# Include the theme
mkdocs-material>=7.1.6

# Deal with list indent of 2 spaces
mdx-truly-sane-lists>=1.3

0 comments on commit ac70d48

Please sign in to comment.