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
442 changes: 442 additions & 0 deletions blog/2025-08-05_mastering-kv-cache-aware-routing.md

Large diffs are not rendered by default.

8 changes: 7 additions & 1 deletion blog/authors.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,4 +30,10 @@ petecheslock:
title: AI Community Architect, Red Hat
url: https://github.com/petecheslock
image_url: https://avatars.githubusercontent.com/u/511733?v=4
email: [email protected]
email: [email protected]

cnuland:
name: Christopher Nuland
title: Principal Technical Marketing Manager for AI, Red Hat
url: https://github.com/cnuland
image_url: /img/blogs/cnuland.jpeg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions docusaurus.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -299,6 +299,7 @@ const config = {
prism: {
theme: prismThemes.vsLight,
darkTheme: prismThemes.vsDark,
additionalLanguages: ['yaml'],
},
}),
};
Expand Down
45 changes: 45 additions & 0 deletions src/css/custom.css
Original file line number Diff line number Diff line change
Expand Up @@ -475,3 +475,48 @@ img.llm-d-logo {
.footer--dark {
--ifm-footer-background-color: #262626 !important;
}

/* Improved YAML syntax highlighting site-wide */
/* Fix YAML code blocks to avoid red/green diff-like appearance */

/* Light mode YAML colors */
.language-yaml .prism-code .token.string {
color: #032f62 !important; /* Dark blue instead of red */
}

.language-yaml .prism-code .token.comment {
color: #6a737d !important; /* Muted gray instead of bright green */
}

.language-yaml .prism-code .token.key.atrule {
color: #005cc5 !important; /* Professional blue for YAML keys */
}

.language-yaml .prism-code .token.number {
color: #005cc5 !important; /* Consistent blue for numbers */
}

.language-yaml .prism-code .token.boolean {
color: #005cc5 !important; /* Consistent blue for booleans */
}

/* Dark mode YAML colors */
[data-theme="dark"] .language-yaml .prism-code .token.string {
color: #9ecbff !important; /* Light blue instead of red */
}

[data-theme="dark"] .language-yaml .prism-code .token.comment {
color: #8b949e !important; /* Muted gray instead of bright green */
}

[data-theme="dark"] .language-yaml .prism-code .token.key.atrule {
color: #79c0ff !important; /* Light blue for keys */
}

[data-theme="dark"] .language-yaml .prism-code .token.number {
color: #79c0ff !important; /* Consistent light blue */
}

[data-theme="dark"] .language-yaml .prism-code .token.boolean {
color: #79c0ff !important; /* Consistent light blue */
}
Binary file added static/img/blogs/cnuland.jpeg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.