Skip to content

Commit ca9d645

Browse files
committed
docs: fix broken image URLs after Git LFS removal (media -> raw githubusercontent)
1 parent 202244e commit ca9d645

5 files changed

Lines changed: 90 additions & 90 deletions

File tree

AGENTS.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -255,16 +255,16 @@ All new features and non-trivial changes must be developed in separate branches.
255255
- **Do NOT merge into `main`** -- leave the feature branch as-is after completing work. Merging is done manually by the maintainer or via GitHub PR
256256
- **Do NOT use git worktrees** -- work directly in the repository checkout. Worktrees add unnecessary complexity and cause issues with stash conflicts and asset path resolution
257257

258-
### Git LFS & Image URLs
258+
### Image URLs
259259

260-
All binary assets (PNG images, fonts) are stored in Git LFS. When referencing images in README or documentation:
260+
Binary assets (PNG images, fonts) are stored **directly in Git** (Git LFS was removed). When referencing images in README or documentation:
261261

262-
- **Use `media.githubusercontent.com`** for LFS-tracked files:
262+
- **Use `raw.githubusercontent.com`**:
263263
```
264-
https://media.githubusercontent.com/media/RoboNET/FlexRender/main/examples/output/receipt.png
264+
https://raw.githubusercontent.com/RoboNET/FlexRender/main/examples/output/receipt.png
265265
```
266-
- **Do NOT use `raw.githubusercontent.com`** -- it returns the LFS pointer file (text), not the actual image content
267-
- LFS-tracked paths: `examples/output/*.png`, `examples/assets/fonts/*.ttf`, `examples/assets/placeholder/*.png`, `examples/visual-docs/output/*.png`
266+
- **Do NOT use `media.githubusercontent.com/media/...`** -- that is the LFS delivery path and now returns 404, since the files are no longer LFS-tracked
267+
- Asset paths: `examples/output/*.png`, `examples/assets/fonts/*.ttf`, `examples/assets/placeholder/*.png`, `examples/visual-docs/output/*.png`
268268

269269
### Commits
270270

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,16 +32,16 @@ A .NET library for rendering images from YAML templates with a full CSS flexbox
3232

3333
| Receipt | Dynamic Receipt | Ticket | Label |
3434
|---------|-----------------|--------|-------|
35-
| ![Receipt](https://media.githubusercontent.com/media/RoboNET/FlexRender/main/examples/output/receipt.png) | ![Dynamic](https://media.githubusercontent.com/media/RoboNET/FlexRender/main/examples/output/receipt-dynamic.png) | ![Ticket](https://media.githubusercontent.com/media/RoboNET/FlexRender/main/examples/output/ticket.png) | ![Label](https://media.githubusercontent.com/media/RoboNET/FlexRender/main/examples/output/label.png) |
35+
| ![Receipt](https://raw.githubusercontent.com/RoboNET/FlexRender/main/examples/output/receipt.png) | ![Dynamic](https://raw.githubusercontent.com/RoboNET/FlexRender/main/examples/output/receipt-dynamic.png) | ![Ticket](https://raw.githubusercontent.com/RoboNET/FlexRender/main/examples/output/ticket.png) | ![Label](https://raw.githubusercontent.com/RoboNET/FlexRender/main/examples/output/label.png) |
3636

3737
| Table Invoice | Expressions | Visual Effects |
3838
|---------------|-------------|----------------|
39-
| ![Table Invoice](https://media.githubusercontent.com/media/RoboNET/FlexRender/main/examples/output/table-invoice.png) | ![Expressions](https://media.githubusercontent.com/media/RoboNET/FlexRender/main/examples/output/expressions-demo.png) | ![Visual Effects](https://media.githubusercontent.com/media/RoboNET/FlexRender/main/examples/output/visual-effects.png) |
39+
| ![Table Invoice](https://raw.githubusercontent.com/RoboNET/FlexRender/main/examples/output/table-invoice.png) | ![Expressions](https://raw.githubusercontent.com/RoboNET/FlexRender/main/examples/output/expressions-demo.png) | ![Visual Effects](https://raw.githubusercontent.com/RoboNET/FlexRender/main/examples/output/visual-effects.png) |
4040

4141
<details>
4242
<summary>All Features Showcase (click to expand)</summary>
4343

44-
![Showcase](https://media.githubusercontent.com/media/RoboNET/FlexRender/main/examples/output/showcase-all-features.png)
44+
![Showcase](https://raw.githubusercontent.com/RoboNET/FlexRender/main/examples/output/showcase-all-features.png)
4545

4646
</details>
4747

@@ -50,7 +50,7 @@ A .NET library for rendering images from YAML templates with a full CSS flexbox
5050

5151
| Skia | ImageSharp | SVG |
5252
|------|------------|-----|
53-
| ![Skia](https://media.githubusercontent.com/media/RoboNET/FlexRender/main/examples/output/showcase-capabilities-skia.png) | ![ImageSharp](https://media.githubusercontent.com/media/RoboNET/FlexRender/main/examples/output/showcase-capabilities-imagesharp.png) | [SVG output](examples/output/showcase-capabilities.svg) |
53+
| ![Skia](https://raw.githubusercontent.com/RoboNET/FlexRender/main/examples/output/showcase-capabilities-skia.png) | ![ImageSharp](https://raw.githubusercontent.com/RoboNET/FlexRender/main/examples/output/showcase-capabilities-imagesharp.png) | [SVG output](examples/output/showcase-capabilities.svg) |
5454
| Native rendering, gradients, shadows, SVG elements | Pure .NET, zero native deps | Vector output, scalable |
5555

5656
</details>

docs/wiki/Home.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ A modular .NET library for rendering images from YAML templates with a full CSS
4747

4848
| Receipt | Dynamic Receipt | Ticket | Label |
4949
|---------|-----------------|--------|-------|
50-
| ![Receipt](https://media.githubusercontent.com/media/RoboNET/FlexRender/main/examples/output/receipt.png) | ![Dynamic](https://media.githubusercontent.com/media/RoboNET/FlexRender/main/examples/output/receipt-dynamic.png) | ![Ticket](https://media.githubusercontent.com/media/RoboNET/FlexRender/main/examples/output/ticket.png) | ![Label](https://media.githubusercontent.com/media/RoboNET/FlexRender/main/examples/output/label.png) |
50+
| ![Receipt](https://raw.githubusercontent.com/RoboNET/FlexRender/main/examples/output/receipt.png) | ![Dynamic](https://raw.githubusercontent.com/RoboNET/FlexRender/main/examples/output/receipt-dynamic.png) | ![Ticket](https://raw.githubusercontent.com/RoboNET/FlexRender/main/examples/output/ticket.png) | ![Label](https://raw.githubusercontent.com/RoboNET/FlexRender/main/examples/output/label.png) |
5151

5252
## Quick Install
5353

0 commit comments

Comments
 (0)