Skip to content
Open
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
484 changes: 484 additions & 0 deletions blog/2026-05-26_running-llm-d-without-kubernetes.md

Large diffs are not rendered by default.

8 changes: 8 additions & 0 deletions blog/authors.yml
Original file line number Diff line number Diff line change
Expand Up @@ -198,3 +198,11 @@ abdullahgharaibeh:
url: https://github.com/ahg-g
image_url: https://avatars.githubusercontent.com/u/40361897?v=4

ezrasilvera:
name: Ezra Silvera
title: Senior Technical Staff Member, IBM
image_url: /img/blogs/ezrasilvera.webp
email: ezra@il.ibm.com
socials:
github: https://github.com/ezrasilvera
linkedin: ezra-silvera-9746682
Original file line number Diff line number Diff line change
Expand Up @@ -122,6 +122,14 @@ Images with relative paths should be transformed:

This should escape arrows: \<->

## 6b. Autolink Test

Bare HTTPS autolink: https://github.com/llm-d/llm-d/issues/680

Bare HTTP autolink: http://example.com/path/to/page

A link already in markdown format should be unchanged: [llm-d](https://github.com/llm-d)

## 7. HTML Image Tag Test

Images with unquoted attributes should be quoted for MDX:
Expand Down
8 changes: 8 additions & 0 deletions preview/scripts/test-fixtures/transformation-test.md
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,14 @@ Images with relative paths should be transformed:

This should escape arrows: <->

## 6b. Autolink Test

Bare HTTPS autolink: <https://github.com/llm-d/llm-d/issues/680>

Bare HTTP autolink: <http://example.com/path/to/page>

A link already in markdown format should be unchanged: [llm-d](https://github.com/llm-d)

## 7. HTML Image Tag Test

Images with unquoted attributes should be quoted for MDX:
Expand Down
4 changes: 4 additions & 0 deletions preview/scripts/transformations.sh
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,10 @@ apply_transformations() {
# MDX escaping - escape special characters
sed_inplace 's|<->|\\<->|g' "$file"

# Convert autolinks (<https://...> / <http://...>) to plain URLs
# MDX parses angle brackets as JSX and fails on the / in URLs
sed_inplace -E 's|<(https?://[^>]+)>|\1|g' "$file"

# Escape HTML comments for MDX (MDX doesn't support <!-- --> syntax)
# Replace HTML comments with MDX comments: <!-- text --> becomes {/* text */}
# Handle both single-line and multi-line comments
Expand Down
Binary file added static/img/blogs/ezrasilvera.webp
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.
Loading